Commit 83a95c16 authored by Jin Chen's avatar Jin Chen Committed by Greg Kroah-Hartman

staging: sm750fb: Rename setDisplayControl to set_display_control - style

Fix checkpatch.pl warning:
    CHECK: Avoid CamelCase: <setDisplayControl>
Signed-off-by: default avatarJin Chen <nobijinc@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dc96476e
......@@ -5,7 +5,7 @@
#include "ddk750_power.h"
#include "ddk750_dvi.h"
static void setDisplayControl(int ctrl, int disp_state)
static void set_display_control(int ctrl, int disp_state)
{
/* state != 0 means turn on both timing & plane en_bit */
unsigned long reg, val, reserved;
......@@ -137,12 +137,12 @@ void ddk750_setLogicalDispOut(enum disp_output output)
if (output & PRI_TP_USAGE) {
/* set primary timing and plane en_bit */
setDisplayControl(0, (output & PRI_TP_MASK) >> PRI_TP_OFFSET);
set_display_control(0, (output & PRI_TP_MASK) >> PRI_TP_OFFSET);
}
if (output & SEC_TP_USAGE) {
/* set secondary timing and plane en_bit*/
setDisplayControl(1, (output & SEC_TP_MASK) >> SEC_TP_OFFSET);
set_display_control(1, (output & SEC_TP_MASK) >> SEC_TP_OFFSET);
}
if (output & PNL_SEQ_USAGE) {
......
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