From: Ahmet Sezgin Duran Date: Fri, 12 Sep 2025 16:26:27 +0000 (+0000) Subject: staging: sm750fb: rename camel case variable X-Git-Tag: v6.18-rc1~75^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e4cb5665211013e5fe4488493b5bd6a13797901e;p=thirdparty%2Fkernel%2Flinux.git staging: sm750fb: rename camel case variable Rename regValue to reg_value to follow kernel coding style. Signed-off-by: Ahmet Sezgin Duran Link: https://lore.kernel.org/r/20250912162627.95010-1-ahmet@sezginduran.net Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/sm750fb/sm750_accel.c b/drivers/staging/sm750fb/sm750_accel.c index 7ac2e7b6ea0f..b07c1aa68621 100644 --- a/drivers/staging/sm750fb/sm750_accel.c +++ b/drivers/staging/sm750fb/sm750_accel.c @@ -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)