From: Benjamin Philip Date: Tue, 27 Jul 2021 19:19:52 +0000 (+0530) Subject: staging: sm750fb: Rename vCursor to v_cursor in lynxfb_crtc X-Git-Tag: v5.15~425^2~349 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7bca9543512e66c5de1c62f855febeae98801587;p=platform%2Fkernel%2Flinux-starfive.git staging: sm750fb: Rename vCursor to v_cursor in lynxfb_crtc The struct lynxfb_crtc has a member named vCursor. This name is CamelCase and is frowned upon. This commit renames it to v_cursor and makes the necessary changes for the module to build. This change also fixes the following checkpatch CHECK: + unsigned char __iomem *vCursor; /* virtual address of cursor */ Signed-off-by: Benjamin Philip CHECK: Avoid CamelCase: 135: FILE: sm750.h:135: Link: https://lore.kernel.org/r/58dfc3f12deabe3a786ff2b9c75ac24f51724974.1627413010.git.benjamin.philip495@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/sm750fb/sm750.h b/drivers/staging/sm750fb/sm750.h index 4093d5e..8952154 100644 --- a/drivers/staging/sm750fb/sm750.h +++ b/drivers/staging/sm750fb/sm750.h @@ -132,7 +132,7 @@ struct lynx_cursor { }; struct lynxfb_crtc { - unsigned char __iomem *vCursor; /* virtual address of cursor */ + unsigned char __iomem *v_cursor; /* virtual address of cursor */ unsigned char __iomem *vScreen; /* virtual address of on_screen */ int o_cursor; /* cursor address offset in vidmem */ int o_screen; /* onscreen address offset in vidmem */