Staging: sm750fb: Rename programModeRegisters
authorDorcas AnonoLitunya <anonolitunya@gmail.com>
Mon, 16 Oct 2023 20:14:11 +0000 (23:14 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 17 Oct 2023 13:38:00 +0000 (15:38 +0200)
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>
drivers/staging/sm750fb/ddk750_mode.c

index fc3db09de9ae113e874436d61309d184263cb114..e901855fa9b6b7dd54e59e688815fd70664a0a10 100644 (file)
@@ -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;
 }