Commit f0977109 authored by Jules Irenge's avatar Jules Irenge Committed by Greg Kroah-Hartman

staging: sm750fb: lower case to fix camelcase checkpatch warning

Lower case to fix CamelCase checkpatch.pl warning
"CHECK: Avoid CamelCase: <ulActualMxClk>".
Signed-off-by: default avatarJules Irenge <jbi.octave@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 14a56ec6
...@@ -56,7 +56,7 @@ static unsigned int get_mxclk_freq(void) ...@@ -56,7 +56,7 @@ static unsigned int get_mxclk_freq(void)
static void set_chip_clock(unsigned int frequency) static void set_chip_clock(unsigned int frequency)
{ {
struct pll_value pll; struct pll_value pll;
unsigned int ulActualMxClk; unsigned int actual_mx_clk;
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */ /* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE) if (sm750_get_chip_type() == SM750LE)
...@@ -76,7 +76,7 @@ static void set_chip_clock(unsigned int frequency) ...@@ -76,7 +76,7 @@ static void set_chip_clock(unsigned int frequency)
* Return value of sm750_calc_pll_value gives the actual * Return value of sm750_calc_pll_value gives the actual
* possible clock. * possible clock.
*/ */
ulActualMxClk = sm750_calc_pll_value(frequency, &pll); actual_mx_clk = sm750_calc_pll_value(frequency, &pll);
/* Master Clock Control: MXCLK_PLL */ /* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg(&pll)); poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg(&pll));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment