Commit 228a4cf8 authored by Mike Rapoport's avatar Mike Rapoport Committed by Greg Kroah-Hartman

staging: sm750fb: staticize getPowerMode function

The getPowerMode function is not used outside ddk750_power, make it
static.
Signed-off-by: default avatarMike Rapoport <mike.rapoport@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6af70030
...@@ -17,7 +17,7 @@ void ddk750_setDPMS(DPMS_t state) ...@@ -17,7 +17,7 @@ void ddk750_setDPMS(DPMS_t state)
} }
} }
unsigned int getPowerMode(void) static unsigned int getPowerMode(void)
{ {
if (getChipType() == SM750LE) if (getChipType() == SM750LE)
return 0; return 0;
......
...@@ -19,8 +19,6 @@ DPMS_t; ...@@ -19,8 +19,6 @@ DPMS_t;
void ddk750_setDPMS(DPMS_t); void ddk750_setDPMS(DPMS_t);
unsigned int getPowerMode(void);
/* /*
* This function sets the current power mode * This function sets the current power mode
*/ */
......
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