summaryrefslogtreecommitdiffstats
path: root/drivers/staging/sm750fb/ddk750_power.c
diff options
context:
space:
mode:
authorElise Lennion <elise.lennion@gmail.com>2016-10-27 22:23:35 -0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-10-30 11:13:11 -0400
commit03140dabf584555e96440084d1ac426127bdf8c3 (patch)
tree830ad9e079824c058919951f526f27e15c1842c0 /drivers/staging/sm750fb/ddk750_power.c
parentcefc2fc61e1f5c80c6240634da01a4b846e9a6db (diff)
staging: sm750fb: Replace functions CamelCase naming with underscores.
Replace CamelCase function names with underscores to comply with the standard kernel coding style. Signed-off-by: Elise Lennion <elise.lennion@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/sm750fb/ddk750_power.c')
-rw-r--r--drivers/staging/sm750fb/ddk750_power.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/staging/sm750fb/ddk750_power.c b/drivers/staging/sm750fb/ddk750_power.c
index 6c15b1253240..fda928032897 100644
--- a/drivers/staging/sm750fb/ddk750_power.c
+++ b/drivers/staging/sm750fb/ddk750_power.c
@@ -2,7 +2,7 @@
#include "ddk750_reg.h"
#include "ddk750_power.h"
-void ddk750_setDPMS(DPMS_t state)
+void ddk750_set_dpms(DPMS_t state)
{
unsigned int value;
@@ -17,7 +17,7 @@ void ddk750_setDPMS(DPMS_t state)
}
}
-static unsigned int getPowerMode(void)
+static unsigned int get_power_mode(void)
{
if (sm750_get_chip_type() == SM750LE)
return 0;
@@ -74,7 +74,7 @@ void set_power_mode(unsigned int powerMode)
void set_current_gate(unsigned int gate)
{
- if (getPowerMode() == POWER_MODE_CTRL_MODE_MODE1)
+ if (get_power_mode() == POWER_MODE_CTRL_MODE_MODE1)
POKE32(MODE1_GATE, gate);
else
POKE32(MODE0_GATE, gate);
@@ -85,7 +85,7 @@ void set_current_gate(unsigned int gate)
/*
* This function enable/disable the 2D engine.
*/
-void enable2DEngine(unsigned int enable)
+void enable_2d_engine(unsigned int enable)
{
u32 gate;
@@ -98,7 +98,7 @@ void enable2DEngine(unsigned int enable)
set_current_gate(gate);
}
-void enableDMA(unsigned int enable)
+void enable_dma(unsigned int enable)
{
u32 gate;
@@ -115,7 +115,7 @@ void enableDMA(unsigned int enable)
/*
* This function enable/disable the GPIO Engine
*/
-void enableGPIO(unsigned int enable)
+void enable_gpio(unsigned int enable)
{
u32 gate;
@@ -132,7 +132,7 @@ void enableGPIO(unsigned int enable)
/*
* This function enable/disable the I2C Engine
*/
-void enableI2C(unsigned int enable)
+void enable_i2c(unsigned int enable)
{
u32 gate;