mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
Staging: sm750fb: Rename programModeRegisters
Rename function programModeRegisters to program_mode_registers. This follows snakecase naming convention and ensures a consistent naming style throughout the file. Issue found by checkpatch. Mutes the following checkpatch error: CHECK: Avoid CamelCase: <programModeRegisters> Signed-off-by: Dorcas AnonoLitunya <anonolitunya@gmail.com> Link: https://lore.kernel.org/r/20231016201434.7880-5-anonolitunya@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7826b6338b
commit
3632219898
@ -75,8 +75,8 @@ display_control_adjust_SM750LE(struct mode_parameter *mode_param,
|
||||
}
|
||||
|
||||
/* only timing related registers will be programed */
|
||||
static int programModeRegisters(struct mode_parameter *mode_param,
|
||||
struct pll_value *pll)
|
||||
static int program_mode_registers(struct mode_parameter *mode_param,
|
||||
struct pll_value *pll)
|
||||
{
|
||||
int ret = 0;
|
||||
int cnt = 0;
|
||||
@ -220,6 +220,6 @@ int ddk750_setModeTiming(struct mode_parameter *parm, enum clock_type clock)
|
||||
outb_p(0x88, 0x3d4);
|
||||
outb_p(0x06, 0x3d5);
|
||||
}
|
||||
programModeRegisters(parm, &pll);
|
||||
program_mode_registers(parm, &pll);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user