aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/staging/sm750fb
diff options
context:
space:
mode:
authorJules Irenge <jbi.octave@gmail.com>2019-03-25 22:23:13 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-03-27 23:33:26 +0900
commitf0977109a5775a211948c1b8a675932f9699022d (patch)
tree9c8636729a135f7c11269ef3a139b396725f45c4 /drivers/staging/sm750fb
parentstaging: erofs: support IO read error injection (diff)
downloadwireguard-linux-f0977109a5775a211948c1b8a675932f9699022d.tar.xz
wireguard-linux-f0977109a5775a211948c1b8a675932f9699022d.zip
staging: sm750fb: lower case to fix camelcase checkpatch warning
Lower case to fix CamelCase checkpatch.pl warning "CHECK: Avoid CamelCase: <ulActualMxClk>". Signed-off-by: Jules Irenge <jbi.octave@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/sm750fb')
-rw-r--r--drivers/staging/sm750fb/ddk750_chip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c
index cd2ca0de1ae9..5a317cc98a4b 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -56,7 +56,7 @@ static unsigned int get_mxclk_freq(void)
static void set_chip_clock(unsigned int frequency)
{
struct pll_value pll;
- unsigned int ulActualMxClk;
+ unsigned int actual_mx_clk;
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -76,7 +76,7 @@ static void set_chip_clock(unsigned int frequency)
* Return value of sm750_calc_pll_value gives the actual
* possible clock.
*/
- ulActualMxClk = sm750_calc_pll_value(frequency, &pll);
+ actual_mx_clk = sm750_calc_pll_value(frequency, &pll);
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg(&pll));