[PATCH] staging : sm750fb : Replace CamelCase variable names and hungarian prefx

2017-05-25 Thread Richa Jha

Replace CamelCase variable names with underscores and remove 
 hungarian prefixes to comply with the standard kernel coding style

Signed-off-by: Richa Jha <ric...@cdac.in>
---
 drivers/staging/sm750fb/ddk750_chip.c | 59 ++-
 drivers/staging/sm750fb/ddk750_chip.h | 18 +--
 2 files changed, 39 insertions(+), 38 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 5e4bfb6..f2c89fc 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -14,14 +14,14 @@ logical_chip_type_t sm750_get_chip_type(void)
return chip;
 }
 
-void sm750_set_chip_type(unsigned short devId, u8 revId)
+void sm750_set_chip_type(unsigned short dev_id, u8 rev_id)
 {
-   if (devId == 0x718) {
+   if (dev_id == 0x718) {
chip = SM718;
-   } else if (devId == 0x750) {
+   } else if (dev_id == 0x750) {
chip = SM750;
/* SM750 and SM750LE are different in their revision ID only. */
-   if (revId == SM750LE_REVISION_ID) {
+   if (rev_id == SM750LE_REVISION_ID) {
chip = SM750LE;
pr_info("found sm750le\n");
}
@@ -55,7 +55,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_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -65,8 +65,8 @@ static void set_chip_clock(unsigned int frequency)
/*
 * Set up PLL structure to hold the value to be set in clocks.
 */
-   pll.inputFreq = DEFAULT_INPUT_CLOCK; /* Defined in CLOCK.H */
-   pll.clockType = MXCLK_PLL;
+   pll.input_freq = DEFAULT_INPUT_CLOCK; /* Defined in CLOCK.H */
+   pll.clock_type = MXCLK_PLL;
 
/*
 * Call sm750_calc_pll_value() to fill the other fields
@@ -75,7 +75,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, );
+   actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,13 +210,13 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
-   pInitParam->powerMode = 0;
-   sm750_set_power_mode(pInitParam->powerMode);
+   if (init_param->power_mode != 0)
+   init_param->power_mode = 0;
+   sm750_set_power_mode(init_param->power_mode);
 
/* Enable display power gate & LOCALMEM power gate*/
reg = peek32(CURRENT_GATE);
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)init_param->chip_clock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(init_param->mem_clock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(init_param->master_clock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (init_param->reset_memory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (init_param->set_all_eng_off == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
@@ -309,7 +309,8 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
  * M = {1,...,255}
  * N = {2,...,15}
  */
-unsigned int sm750_calc_pll_value(unsigned int request_orig, struct pll_value 
*pll)
+unsigned int sm750_calc_pll_value(unsigned int request_orig,
+ struct pll_value *pll)
 {
/*
 

[PATCH] staging : sm750fb : Replace CamelCase variable names and hungarian prefx

2017-05-25 Thread Richa Jha

Replace CamelCase variable names with underscores and remove 
 hungarian prefixes to comply with the standard kernel coding style

Signed-off-by: Richa Jha 
---
 drivers/staging/sm750fb/ddk750_chip.c | 59 ++-
 drivers/staging/sm750fb/ddk750_chip.h | 18 +--
 2 files changed, 39 insertions(+), 38 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 5e4bfb6..f2c89fc 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -14,14 +14,14 @@ logical_chip_type_t sm750_get_chip_type(void)
return chip;
 }
 
-void sm750_set_chip_type(unsigned short devId, u8 revId)
+void sm750_set_chip_type(unsigned short dev_id, u8 rev_id)
 {
-   if (devId == 0x718) {
+   if (dev_id == 0x718) {
chip = SM718;
-   } else if (devId == 0x750) {
+   } else if (dev_id == 0x750) {
chip = SM750;
/* SM750 and SM750LE are different in their revision ID only. */
-   if (revId == SM750LE_REVISION_ID) {
+   if (rev_id == SM750LE_REVISION_ID) {
chip = SM750LE;
pr_info("found sm750le\n");
}
@@ -55,7 +55,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_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -65,8 +65,8 @@ static void set_chip_clock(unsigned int frequency)
/*
 * Set up PLL structure to hold the value to be set in clocks.
 */
-   pll.inputFreq = DEFAULT_INPUT_CLOCK; /* Defined in CLOCK.H */
-   pll.clockType = MXCLK_PLL;
+   pll.input_freq = DEFAULT_INPUT_CLOCK; /* Defined in CLOCK.H */
+   pll.clock_type = MXCLK_PLL;
 
/*
 * Call sm750_calc_pll_value() to fill the other fields
@@ -75,7 +75,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, );
+   actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,13 +210,13 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
-   pInitParam->powerMode = 0;
-   sm750_set_power_mode(pInitParam->powerMode);
+   if (init_param->power_mode != 0)
+   init_param->power_mode = 0;
+   sm750_set_power_mode(init_param->power_mode);
 
/* Enable display power gate & LOCALMEM power gate*/
reg = peek32(CURRENT_GATE);
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)init_param->chip_clock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(init_param->mem_clock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(init_param->master_clock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (init_param->reset_memory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (init_param->set_all_eng_off == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
@@ -309,7 +309,8 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
  * M = {1,...,255}
  * N = {2,...,15}
  */
-unsigned int sm750_calc_pll_value(unsigned int request_orig, struct pll_value 
*pll)
+unsigned int sm750_calc_pll_value(unsigned int request_orig,
+ struct pll_value *pll)
 {
/*
 * as sm750 register

staging: sm750fb: removed hungarian prfx and replace CamelCase variables

2017-05-24 Thread Richa Jha

Replace CamelCase variable names with underscores and remove 
 hungarian prefixes to comply with the standard kernel coding style

Signed-off-by: Richa Jha <ric...@cdac.in>
---
 drivers/staging/sm750fb/ddk750_chip.c | 59 ++-
 drivers/staging/sm750fb/ddk750_chip.h | 18 +--
 2 files changed, 39 insertions(+), 38 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 5e4bfb6..f2c89fc 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -14,14 +14,14 @@ logical_chip_type_t sm750_get_chip_type(void)
return chip;
 }
 
-void sm750_set_chip_type(unsigned short devId, u8 revId)
+void sm750_set_chip_type(unsigned short dev_id, u8 rev_id)
 {
-   if (devId == 0x718) {
+   if (dev_id == 0x718) {
chip = SM718;
-   } else if (devId == 0x750) {
+   } else if (dev_id == 0x750) {
chip = SM750;
/* SM750 and SM750LE are different in their revision ID only. */
-   if (revId == SM750LE_REVISION_ID) {
+   if (rev_id == SM750LE_REVISION_ID) {
chip = SM750LE;
pr_info("found sm750le\n");
}
@@ -55,7 +55,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_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -65,8 +65,8 @@ static void set_chip_clock(unsigned int frequency)
/*
 * Set up PLL structure to hold the value to be set in clocks.
 */
-   pll.inputFreq = DEFAULT_INPUT_CLOCK; /* Defined in CLOCK.H */
-   pll.clockType = MXCLK_PLL;
+   pll.input_freq = DEFAULT_INPUT_CLOCK; /* Defined in CLOCK.H */
+   pll.clock_type = MXCLK_PLL;
 
/*
 * Call sm750_calc_pll_value() to fill the other fields
@@ -75,7 +75,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, );
+   actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,13 +210,13 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
-   pInitParam->powerMode = 0;
-   sm750_set_power_mode(pInitParam->powerMode);
+   if (init_param->power_mode != 0)
+   init_param->power_mode = 0;
+   sm750_set_power_mode(init_param->power_mode);
 
/* Enable display power gate & LOCALMEM power gate*/
reg = peek32(CURRENT_GATE);
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)init_param->chip_clock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(init_param->mem_clock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(init_param->master_clock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (init_param->reset_memory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (init_param->set_all_eng_off == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
@@ -309,7 +309,8 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
  * M = {1,...,255}
  * N = {2,...,15}
  */
-unsigned int sm750_calc_pll_value(unsigned int request_orig, struct pll_value 
*pll)
+unsigned int sm750_calc_pll_value(unsigned int request_orig,
+ struct pll_value *pll)
 {
/*
 

staging: sm750fb: removed hungarian prfx and replace CamelCase variables

2017-05-24 Thread Richa Jha

Replace CamelCase variable names with underscores and remove 
 hungarian prefixes to comply with the standard kernel coding style

Signed-off-by: Richa Jha 
---
 drivers/staging/sm750fb/ddk750_chip.c | 59 ++-
 drivers/staging/sm750fb/ddk750_chip.h | 18 +--
 2 files changed, 39 insertions(+), 38 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 5e4bfb6..f2c89fc 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -14,14 +14,14 @@ logical_chip_type_t sm750_get_chip_type(void)
return chip;
 }
 
-void sm750_set_chip_type(unsigned short devId, u8 revId)
+void sm750_set_chip_type(unsigned short dev_id, u8 rev_id)
 {
-   if (devId == 0x718) {
+   if (dev_id == 0x718) {
chip = SM718;
-   } else if (devId == 0x750) {
+   } else if (dev_id == 0x750) {
chip = SM750;
/* SM750 and SM750LE are different in their revision ID only. */
-   if (revId == SM750LE_REVISION_ID) {
+   if (rev_id == SM750LE_REVISION_ID) {
chip = SM750LE;
pr_info("found sm750le\n");
}
@@ -55,7 +55,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_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -65,8 +65,8 @@ static void set_chip_clock(unsigned int frequency)
/*
 * Set up PLL structure to hold the value to be set in clocks.
 */
-   pll.inputFreq = DEFAULT_INPUT_CLOCK; /* Defined in CLOCK.H */
-   pll.clockType = MXCLK_PLL;
+   pll.input_freq = DEFAULT_INPUT_CLOCK; /* Defined in CLOCK.H */
+   pll.clock_type = MXCLK_PLL;
 
/*
 * Call sm750_calc_pll_value() to fill the other fields
@@ -75,7 +75,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, );
+   actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,13 +210,13 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
-   pInitParam->powerMode = 0;
-   sm750_set_power_mode(pInitParam->powerMode);
+   if (init_param->power_mode != 0)
+   init_param->power_mode = 0;
+   sm750_set_power_mode(init_param->power_mode);
 
/* Enable display power gate & LOCALMEM power gate*/
reg = peek32(CURRENT_GATE);
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)init_param->chip_clock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(init_param->mem_clock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(init_param->master_clock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (init_param->reset_memory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (init_param->set_all_eng_off == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
@@ -309,7 +309,8 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
  * M = {1,...,255}
  * N = {2,...,15}
  */
-unsigned int sm750_calc_pll_value(unsigned int request_orig, struct pll_value 
*pll)
+unsigned int sm750_calc_pll_value(unsigned int request_orig,
+ struct pll_value *pll)
 {
/*
 * as sm750 register

staging: sm750fb: removed hungarian prfx and replace CamelCase variables

2017-05-23 Thread Richa Jha
Replace CamelCase variable names with underscores and remove
 hungarian prefixes to comply with the standard kernel coding style

Signed-off-by: Richa Jha <ric...@cdac.in>
---
 drivers/staging/sm750fb/ddk750_chip.c | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 8e51f60..56b8d66 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -55,7 +55,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_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -75,7 +75,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, );
+   actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,13 +210,13 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
-   pInitParam->powerMode = 0;
-   sm750_set_power_mode(pInitParam->powerMode);
+   if (init_param->powerMode != 0)
+   init_param->powerMode = 0;
+   sm750_set_power_mode(init_param->powerMode);
 
/* Enable display power gate & LOCALMEM power gate*/
reg = peek32(CURRENT_GATE);
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)init_param->chipClock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(init_param->memClock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(init_param->masterClock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (init_param->resetMemory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (init_param->setAllEngOff == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



staging: sm750fb: removed hungarian prfx and replace CamelCase variables

2017-05-23 Thread Richa Jha
Replace CamelCase variable names with underscores and remove
 hungarian prefixes to comply with the standard kernel coding style

Signed-off-by: Richa Jha 
---
 drivers/staging/sm750fb/ddk750_chip.c | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 8e51f60..56b8d66 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -55,7 +55,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_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -75,7 +75,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, );
+   actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,13 +210,13 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
-   pInitParam->powerMode = 0;
-   sm750_set_power_mode(pInitParam->powerMode);
+   if (init_param->powerMode != 0)
+   init_param->powerMode = 0;
+   sm750_set_power_mode(init_param->powerMode);
 
/* Enable display power gate & LOCALMEM power gate*/
reg = peek32(CURRENT_GATE);
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)init_param->chipClock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(init_param->memClock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(init_param->masterClock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (init_param->resetMemory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (init_param->setAllEngOff == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



staging: sm750fb: Replace CamelCase variable names with underscores

2017-05-22 Thread Richa Jha
Replace CamelCase variable names with underscores to comply with
the standard kernel coding style

Signed-off-by: Richa Jha <ric...@cdac.in>
---
 drivers/staging/sm750fb/ddk750_chip.c | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 7b1180a..00bca17 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -55,7 +55,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 ul_actual_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -75,7 +75,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, );
+   ul_actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,11 +210,11 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *p_init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
+   if (p_init_param->powerMode != 0)
p_init_param->powerMode = 0;
sm750_set_power_mode(p_init_param->powerMode);
 
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)p_init_param->chipClock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(p_init_param->memClock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(p_init_param->masterClock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (p_init_param->resetMemory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (p_init_param->setAllEngOff == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



staging: sm750fb: Replace CamelCase variable names with underscores

2017-05-22 Thread Richa Jha
Replace CamelCase variable names with underscores to comply with
the standard kernel coding style

Signed-off-by: Richa Jha 
---
 drivers/staging/sm750fb/ddk750_chip.c | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 7b1180a..00bca17 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -55,7 +55,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 ul_actual_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -75,7 +75,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, );
+   ul_actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,11 +210,11 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *p_init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
+   if (p_init_param->powerMode != 0)
p_init_param->powerMode = 0;
sm750_set_power_mode(p_init_param->powerMode);
 
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)p_init_param->chipClock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(p_init_param->memClock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(p_init_param->masterClock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (p_init_param->resetMemory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (p_init_param->setAllEngOff == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



staging: sm750fb: Replace functions CamelCase naming with underscores.

2017-05-22 Thread Richa Jha
Replace CamelCase function names with underscores to comply with
the standard kernel coding style

Signed-off-by: Richa Jha <ric...@cdac.in>
---
 drivers/staging/sm750fb/ddk750_chip.c | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 7b1180a..00bca17 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -55,7 +55,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 ul_actual_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -75,7 +75,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, );
+   ul_actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,11 +210,11 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *p_init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
+   if (p_init_param->powerMode != 0)
p_init_param->powerMode = 0;
sm750_set_power_mode(p_init_param->powerMode);
 
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)p_init_param->chipClock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(p_init_param->memClock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(p_init_param->masterClock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (p_init_param->resetMemory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (p_init_param->setAllEngOff == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



staging: sm750fb: Replace functions CamelCase naming with underscores.

2017-05-22 Thread Richa Jha
Replace CamelCase function names with underscores to comply with
the standard kernel coding style

Signed-off-by: Richa Jha 
---
 drivers/staging/sm750fb/ddk750_chip.c | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 7b1180a..00bca17 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -55,7 +55,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 ul_actual_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -75,7 +75,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, );
+   ul_actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,11 +210,11 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *p_init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
+   if (p_init_param->powerMode != 0)
p_init_param->powerMode = 0;
sm750_set_power_mode(p_init_param->powerMode);
 
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)p_init_param->chipClock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(p_init_param->memClock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(p_init_param->masterClock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (p_init_param->resetMemory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (p_init_param->setAllEngOff == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



[PATCH] Fixed cameCase check in file drivers/staging/sm750fb/ddk750_chip.c

2017-05-22 Thread Richa Jha
Changes :

ulActualMxClk ---> ul_actual_max_clk
pInitParam---> p_init_param

Signed-off-by: Richa Jha <ric...@cdac.in>
---
 drivers/staging/sm750fb/ddk750_chip.c | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 7b1180a..00bca17 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -55,7 +55,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 ul_actual_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -75,7 +75,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, );
+   ul_actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,11 +210,11 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *p_init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
+   if (p_init_param->powerMode != 0)
p_init_param->powerMode = 0;
sm750_set_power_mode(p_init_param->powerMode);
 
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)p_init_param->chipClock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(p_init_param->memClock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(p_init_param->masterClock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (p_init_param->resetMemory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (p_init_param->setAllEngOff == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



[PATCH] Fixed cameCase check in file drivers/staging/sm750fb/ddk750_chip.c

2017-05-22 Thread Richa Jha
Changes :

ulActualMxClk ---> ul_actual_max_clk
pInitParam---> p_init_param

Signed-off-by: Richa Jha 
---
 drivers/staging/sm750fb/ddk750_chip.c | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 7b1180a..00bca17 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -55,7 +55,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 ul_actual_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -75,7 +75,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, );
+   ul_actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
@@ -210,11 +210,11 @@ unsigned int ddk750_get_vm_size(void)
return data;
 }
 
-int ddk750_init_hw(struct initchip_param *pInitParam)
+int ddk750_init_hw(struct initchip_param *p_init_param)
 {
unsigned int reg;
 
-   if (pInitParam->powerMode != 0)
+   if (p_init_param->powerMode != 0)
p_init_param->powerMode = 0;
sm750_set_power_mode(p_init_param->powerMode);
 
@@ -237,13 +237,13 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
}
 
/* Set the Main Chip Clock */
-   set_chip_clock(MHz((unsigned int)pInitParam->chipClock));
+   set_chip_clock(MHz((unsigned int)p_init_param->chipClock));
 
/* Set up memory clock. */
-   set_memory_clock(MHz(pInitParam->memClock));
+   set_memory_clock(MHz(p_init_param->memClock));
 
/* Set up master clock */
-   set_master_clock(MHz(pInitParam->masterClock));
+   set_master_clock(MHz(p_init_param->masterClock));
 
/*
 * Reset the memory controller.
@@ -251,7 +251,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
 * the system might hang when sw accesses the memory.
 * The memory should be resetted after changing the MXCLK.
 */
-   if (pInitParam->resetMemory == 1) {
+   if (p_init_param->resetMemory == 1) {
reg = peek32(MISC_CTRL);
reg &= ~MISC_CTRL_LOCALMEM_RESET;
poke32(MISC_CTRL, reg);
@@ -260,7 +260,7 @@ int ddk750_init_hw(struct initchip_param *pInitParam)
poke32(MISC_CTRL, reg);
}
 
-   if (pInitParam->setAllEngOff == 1) {
+   if (p_init_param->setAllEngOff == 1) {
sm750_enable_2d_engine(0);
 
/* Disable Overlay, if a former application left it on */
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



[PATCH] Fixed cameCase check in file drivers/staging/sm750fb/ddk750_chip.c

2017-05-22 Thread Richa Jha
Changes :

ulActualMxClk ---> ul_actual_max_clk
p_init_param  ---> pInitParam

Signed-off-by: Richa Jha <ric...@cdac.in>
---
 drivers/staging/sm750fb/ddk750_chip.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 4f646f2..00bca17 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -55,7 +55,7 @@ static unsigned int get_mxclk_freq(void)
 static void set_chip_clock(unsigned int frequency)
 {
struct pll_value pll;
-   unsigned int ul_actual_max_Clk;
+   unsigned int ul_actual_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -75,7 +75,7 @@ static void set_chip_clock(unsigned int frequency)
 * Return value of sm750_calc_pll_value gives the actual
 * possible clock.
 */
-   ul_actual_max_Clk = sm750_calc_pll_value(frequency, );
+   ul_actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



[PATCH] Fixed cameCase check in file drivers/staging/sm750fb/ddk750_chip.c

2017-05-22 Thread Richa Jha
Changes :

ulActualMxClk ---> ul_actual_max_clk
p_init_param  ---> pInitParam

Signed-off-by: Richa Jha 
---
 drivers/staging/sm750fb/ddk750_chip.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 4f646f2..00bca17 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -55,7 +55,7 @@ static unsigned int get_mxclk_freq(void)
 static void set_chip_clock(unsigned int frequency)
 {
struct pll_value pll;
-   unsigned int ul_actual_max_Clk;
+   unsigned int ul_actual_max_clk;
 
/* Cheok_0509: For SM750LE, the chip clock is fixed. Nothing to set. */
if (sm750_get_chip_type() == SM750LE)
@@ -75,7 +75,7 @@ static void set_chip_clock(unsigned int frequency)
 * Return value of sm750_calc_pll_value gives the actual
 * possible clock.
 */
-   ul_actual_max_Clk = sm750_calc_pll_value(frequency, );
+   ul_actual_max_clk = sm750_calc_pll_value(frequency, );
 
/* Master Clock Control: MXCLK_PLL */
poke32(MXCLK_PLL_CTRL, sm750_format_pll_reg());
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



[PATCH] Removed CamelCase from file drivers/staging/sm750fb/ddk750_chip.c

2017-05-22 Thread Richa Jha
Changes :
devId ---> dev_id
revId ---> rev_id

Signed-off-by: Richa Jha <ric...@cdac.in>
---
 drivers/staging/sm750fb/ddk750_chip.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 5e4bfb6..8e51f60 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -14,14 +14,14 @@ logical_chip_type_t sm750_get_chip_type(void)
return chip;
 }
 
-void sm750_set_chip_type(unsigned short devId, u8 revId)
+void sm750_set_chip_type(unsigned short dev_id, u8 rev_id)
 {
-   if (devId == 0x718) {
+   if (dev_id == 0x718) {
chip = SM718;
-   } else if (devId == 0x750) {
+   } else if (dev_id == 0x750) {
chip = SM750;
/* SM750 and SM750LE are different in their revision ID only. */
-   if (revId == SM750LE_REVISION_ID) {
+   if (rev_id == SM750LE_REVISION_ID) {
chip = SM750LE;
pr_info("found sm750le\n");
}
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



[PATCH] Removed CamelCase from file drivers/staging/sm750fb/ddk750_chip.c

2017-05-22 Thread Richa Jha
Changes :
devId ---> dev_id
revId ---> rev_id

Signed-off-by: Richa Jha 
---
 drivers/staging/sm750fb/ddk750_chip.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c 
b/drivers/staging/sm750fb/ddk750_chip.c
index 5e4bfb6..8e51f60 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -14,14 +14,14 @@ logical_chip_type_t sm750_get_chip_type(void)
return chip;
 }
 
-void sm750_set_chip_type(unsigned short devId, u8 revId)
+void sm750_set_chip_type(unsigned short dev_id, u8 rev_id)
 {
-   if (devId == 0x718) {
+   if (dev_id == 0x718) {
chip = SM718;
-   } else if (devId == 0x750) {
+   } else if (dev_id == 0x750) {
chip = SM750;
/* SM750 and SM750LE are different in their revision ID only. */
-   if (revId == SM750LE_REVISION_ID) {
+   if (rev_id == SM750LE_REVISION_ID) {
chip = SM750LE;
pr_info("found sm750le\n");
}
-- 
2.1.4


---
[ C-DAC is on Social-Media too. Kindly follow us at:
Facebook: https://www.facebook.com/CDACINDIA & Twitter: @cdacindia ]

This e-mail is for the sole use of the intended recipient(s) and may
contain confidential and privileged information. If you are not the
intended recipient, please contact the sender by reply e-mail and destroy
all copies and the original message. Any unauthorized review, use,
disclosure, dissemination, forwarding, printing or copying of this email
is strictly prohibited and appropriate legal action will be taken.
---



[PATCH] Signed-off-by: Richa Jha <richa.j...@gmail.com>

2017-05-17 Thread Richa Jha
 From short to string conversion
---
 drivers/char/efirtc.c | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/char/efirtc.c b/drivers/char/efirtc.c
index dc62568..b8a4d02 100644
--- a/drivers/char/efirtc.c
+++ b/drivers/char/efirtc.c
@@ -302,6 +302,7 @@ static int efi_rtc_proc_show(struct seq_file *m, void *v)
efi_time_cap_t  cap;
efi_bool_t  enabled, pending;   
unsigned long   flags;
+   char str_timezone[128]; 
 
memset(, 0, sizeof(eft));
memset(, 0, sizeof(alm));
@@ -326,7 +327,9 @@ static int efi_rtc_proc_show(struct seq_file *m, void *v)
seq_puts(m, "Timezone   : unspecified\n");
else
/* XXX fixme: convert to string? */
-   seq_printf(m, "Timezone   : %u\n", eft.timezone);
+   for(i= eft.timezone,c=0; i>0 ;c++,i=i/10)
+   str_timezone[c] = i%10 - 48
+   seq_puts(m, str_timezone);

 
seq_printf(m,
-- 
2.1.4



[PATCH] Signed-off-by: Richa Jha

2017-05-17 Thread Richa Jha
 From short to string conversion
---
 drivers/char/efirtc.c | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/char/efirtc.c b/drivers/char/efirtc.c
index dc62568..b8a4d02 100644
--- a/drivers/char/efirtc.c
+++ b/drivers/char/efirtc.c
@@ -302,6 +302,7 @@ static int efi_rtc_proc_show(struct seq_file *m, void *v)
efi_time_cap_t  cap;
efi_bool_t  enabled, pending;   
unsigned long   flags;
+   char str_timezone[128]; 
 
memset(, 0, sizeof(eft));
memset(, 0, sizeof(alm));
@@ -326,7 +327,9 @@ static int efi_rtc_proc_show(struct seq_file *m, void *v)
seq_puts(m, "Timezone   : unspecified\n");
else
/* XXX fixme: convert to string? */
-   seq_printf(m, "Timezone   : %u\n", eft.timezone);
+   for(i= eft.timezone,c=0; i>0 ;c++,i=i/10)
+   str_timezone[c] = i%10 - 48
+   seq_puts(m, str_timezone);

 
seq_printf(m,
-- 
2.1.4