Linux kernel staging patches
 help / color / mirror / Atom feed
* [PATCH v3 1/2] staging: sm750fb: fix function parameter alignment
@ 2025-07-16  5:33 Ignacio Peña
  2025-07-16  5:33 ` [PATCH v3 2/2] staging: sm750fb: fix CamelCase variable naming Ignacio Peña
  0 siblings, 1 reply; 3+ messages in thread
From: Ignacio Peña @ 2025-07-16  5:33 UTC (permalink / raw)
  To: gregkh, linux-staging; +Cc: dan.carpenter, Ignacio Pena

From: Ignacio Pena <ignacio.pena87@gmail.com>

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>
---

Changes in v3:
- Removed the const declaration patch as g_fbmode is modified at runtime
- Split only into alignment and naming fixes

 drivers/staging/sm750fb/sm750.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/sm750fb/sm750.c b/drivers/staging/sm750fb/sm750.c
index abc123def456..def456abc123 100644
--- a/drivers/staging/sm750fb/sm750.c
+++ b/drivers/staging/sm750fb/sm750.c
@@ -125,8 +125,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 */
-- 
2.39.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-07-16  7:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-16  5:33 [PATCH v3 1/2] staging: sm750fb: fix function parameter alignment Ignacio Peña
2025-07-16  5:33 ` [PATCH v3 2/2] staging: sm750fb: fix CamelCase variable naming Ignacio Peña
2025-07-16  7:40   ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox