]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
staging: sm750fb: fix function parameter alignment
authorIgnacio Pena <ignacio.pena87@gmail.com>
Wed, 16 Jul 2025 05:33:56 +0000 (01:33 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 16 Jul 2025 07:39:21 +0000 (09:39 +0200)
Fix checkpatch warning about improper function parameter alignment
in sm750_hw_cursor_set_pos function call.

Signed-off-by: Ignacio Pena <ignacio.pena87@gmail.com>
Link: https://lore.kernel.org/r/20250716053357.64711-1-ignacio.pena87@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm750fb/sm750.c

index b94bdede2993e1cdaa969bd5b86525be569e3ab9..ac3a4d5eae9d95a985b6d20899bce774035e2b93 100644 (file)
@@ -126,8 +126,8 @@ static int lynxfb_ops_cursor(struct fb_info *info, struct fb_cursor *fbcursor)
 
        if (fbcursor->set & FB_CUR_SETPOS)
                sm750_hw_cursor_set_pos(cursor,
-                                      fbcursor->image.dx - info->var.xoffset,
-                                      fbcursor->image.dy - info->var.yoffset);
+                                       fbcursor->image.dx - info->var.xoffset,
+                                       fbcursor->image.dy - info->var.yoffset);
 
        if (fbcursor->set & FB_CUR_SETCMAP) {
                /* get the 16bit color of kernel means */