Skip to content

Commit ad5468a

Browse files
ipenas-clgregkh
authored andcommitted
staging: sm750fb: fix function parameter alignment
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>
1 parent 473b892 commit ad5468a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/staging/sm750fb/sm750.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ static int lynxfb_ops_cursor(struct fb_info *info, struct fb_cursor *fbcursor)
126126

127127
if (fbcursor->set & FB_CUR_SETPOS)
128128
sm750_hw_cursor_set_pos(cursor,
129-
fbcursor->image.dx - info->var.xoffset,
130-
fbcursor->image.dy - info->var.yoffset);
129+
fbcursor->image.dx - info->var.xoffset,
130+
fbcursor->image.dy - info->var.yoffset);
131131

132132
if (fbcursor->set & FB_CUR_SETCMAP) {
133133
/* get the 16bit color of kernel means */

0 commit comments

Comments
 (0)