Commit edb23022 authored by Amitoj Kaur Chawla's avatar Amitoj Kaur Chawla Committed by Greg Kroah-Hartman

staging: sm750fb: Rename dispState

Rename dispState to disp_state to avoid CamelCase. Problem found using
checkpatch.pl
CHECK: Avoid CamelCase: <dispState>
Signed-off-by: default avatarAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0221381c
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#define primaryWaitVerticalSync(delay) waitNextVerticalSync(0, delay) #define primaryWaitVerticalSync(delay) waitNextVerticalSync(0, delay)
static void setDisplayControl(int ctrl, int dispState) static void setDisplayControl(int ctrl, int disp_state)
{ {
/* state != 0 means turn on both timing & plane en_bit */ /* state != 0 means turn on both timing & plane en_bit */
unsigned long ulDisplayCtrlReg, ulReservedBits; unsigned long ulDisplayCtrlReg, ulReservedBits;
...@@ -18,7 +18,7 @@ static void setDisplayControl(int ctrl, int dispState) ...@@ -18,7 +18,7 @@ static void setDisplayControl(int ctrl, int dispState)
if (!ctrl) { if (!ctrl) {
ulDisplayCtrlReg = PEEK32(PANEL_DISPLAY_CTRL); ulDisplayCtrlReg = PEEK32(PANEL_DISPLAY_CTRL);
/* Turn on/off the Panel display control */ /* Turn on/off the Panel display control */
if (dispState) { if (disp_state) {
/* Timing should be enabled first before enabling the plane /* Timing should be enabled first before enabling the plane
* because changing at the same time does not guarantee that * because changing at the same time does not guarantee that
* the plane will also enabled or disabled. * the plane will also enabled or disabled.
...@@ -70,7 +70,7 @@ static void setDisplayControl(int ctrl, int dispState) ...@@ -70,7 +70,7 @@ static void setDisplayControl(int ctrl, int dispState)
/* Set the secondary display control */ /* Set the secondary display control */
ulDisplayCtrlReg = PEEK32(CRT_DISPLAY_CTRL); ulDisplayCtrlReg = PEEK32(CRT_DISPLAY_CTRL);
if (dispState) { if (disp_state) {
/* Timing should be enabled first before enabling the plane because changing at the /* Timing should be enabled first before enabling the plane because changing at the
same time does not guarantee that the plane will also enabled or disabled. same time does not guarantee that the plane will also enabled or disabled.
*/ */
......
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