Commit e4cb5665 authored by Ahmet Sezgin Duran's avatar Ahmet Sezgin Duran Committed by Greg Kroah-Hartman
Browse files

staging: sm750fb: rename camel case variable



Rename regValue to reg_value to follow kernel coding style.

Signed-off-by: default avatarAhmet Sezgin Duran <ahmet@sezginduran.net>
Link: https://lore.kernel.org/r/20250912162627.95010-1-ahmet@sezginduran.net


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 357704a3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)