summaryrefslogtreecommitdiff
path: root/drivers/staging/sm750fb/sm750.h
diff options
context:
space:
mode:
authorBenjamin Philip <benjamin.philip495@gmail.com>2021-07-26 16:15:02 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-07-27 16:25:17 +0300
commit39f9137268ee3df0047706df4e9b7357a40ffc98 (patch)
treeac1882c693205fb021cb73e209b0bd4dbcd06087 /drivers/staging/sm750fb/sm750.h
parentcfdafb7608b4cf159aec510114be7a364347ca0f (diff)
downloadlinux-39f9137268ee3df0047706df4e9b7357a40ffc98.tar.xz
staging: sm750fb: Rename maxW to max_w in lynx_cursor
The struct lynx_cursor has a member named maxW. This name is CamelCase and is frowned upon. This commit renames it to max_w and makes the necessary changes for the module to build. This change also fixes the following checkpatch CHECK: CHECK: Avoid CamelCase: <maxW> 115: FILE: drivers/staging/sm750fb/sm750.c:115: + if (fbcursor->image.width > cursor->maxW || Signed-off-by: Benjamin Philip <benjamin.philip495@gmail.com> Link: https://lore.kernel.org/r/c0c84569b155df7b510a505a86863987836e192d.1627304144.git.benjamin.philip495@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/sm750fb/sm750.h')
-rw-r--r--drivers/staging/sm750fb/sm750.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/sm750fb/sm750.h b/drivers/staging/sm750fb/sm750.h
index 5556208f7178..8271cf7c89f3 100644
--- a/drivers/staging/sm750fb/sm750.h
+++ b/drivers/staging/sm750fb/sm750.h
@@ -122,7 +122,7 @@ struct lynx_cursor {
int h;
int size;
/* hardware limitation */
- int maxW;
+ int max_w;
int max_h;
/* base virtual address and offset of cursor image */
char __iomem *vstart;