]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
staging: sm750fb: rename camel case variable
authorAhmet Sezgin Duran <ahmet@sezginduran.net>
Fri, 12 Sep 2025 16:26:27 +0000 (16:26 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 14 Sep 2025 15:08:39 +0000 (17:08 +0200)
Rename regValue to reg_value to follow kernel coding style.

Signed-off-by: Ahmet Sezgin Duran <ahmet@sezginduran.net>
Link: https://lore.kernel.org/r/20250912162627.95010-1-ahmet@sezginduran.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm750fb/sm750_accel.c

index 7ac2e7b6ea0f47f07a34917de14355fbeffa5e54..b07c1aa68621c2e6d7f66a8a96efcb7142affa20 100644 (file)
@@ -17,9 +17,9 @@
 
 #include "sm750.h"
 #include "sm750_accel.h"
-static inline void write_dpr(struct lynx_accel *accel, int offset, u32 regValue)
+static inline void write_dpr(struct lynx_accel *accel, int offset, u32 reg_value)
 {
-       writel(regValue, accel->dpr_base + offset);
+       writel(reg_value, accel->dpr_base + offset);
 }
 
 static inline u32 read_dpr(struct lynx_accel *accel, int offset)