aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/sm750fb/ddk750_power.h
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.h
parentstaging: sm750fb: Refine code in set_current_gate(). (diff)
downloadlinux-dev-03140dabf584555e96440084d1ac426127bdf8c3.tar.xz
linux-dev-03140dabf584555e96440084d1ac426127bdf8c3.zip
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.h')
-rw-r--r--drivers/staging/sm750fb/ddk750_power.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/sm750fb/ddk750_power.h b/drivers/staging/sm750fb/ddk750_power.h
index 7b24f1185989..ea56026d41b2 100644
--- a/drivers/staging/sm750fb/ddk750_power.h
+++ b/drivers/staging/sm750fb/ddk750_power.h
@@ -14,29 +14,29 @@ DPMS_t;
(PEEK32(MISC_CTRL) & ~MISC_CTRL_DAC_POWER_OFF) | (off)); \
}
-void ddk750_setDPMS(DPMS_t);
+void ddk750_set_dpms(DPMS_t);
void set_power_mode(unsigned int powerMode);
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);
/*
* This function enable/disable the DMA Engine
*/
-void enableDMA(unsigned int enable);
+void enable_dma(unsigned int enable);
/*
* This function enable/disable the GPIO Engine
*/
-void enableGPIO(unsigned int enable);
+void enable_gpio(unsigned int enable);
/*
* This function enable/disable the I2C Engine
*/
-void enableI2C(unsigned int enable);
+void enable_i2c(unsigned int enable);
#endif