forked from Minki/linux
Staging: sm750fb: Insert spaces after commas in two files.
Insert Spaces after commas to rectify the following checkpatch errors in ddk750_power.c and ddk750_swi2c.c: ERROR: space required after that ',' Signed-off-by: Isaac Assegai <isaac.a.travers@gmail.com>: Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c97b2c1536
commit
f31b55ac2a
@ -7,10 +7,10 @@ void ddk750_setDPMS(DPMS_t state)
|
||||
unsigned int value;
|
||||
if(getChipType() == SM750LE){
|
||||
value = PEEK32(CRT_DISPLAY_CTRL);
|
||||
POKE32(CRT_DISPLAY_CTRL,FIELD_VALUE(value,CRT_DISPLAY_CTRL,DPMS,state));
|
||||
POKE32(CRT_DISPLAY_CTRL, FIELD_VALUE(value, CRT_DISPLAY_CTRL, DPMS, state));
|
||||
}else{
|
||||
value = PEEK32(SYSTEM_CTRL);
|
||||
value= FIELD_VALUE(value,SYSTEM_CTRL,DPMS,state);
|
||||
value= FIELD_VALUE(value, SYSTEM_CTRL, DPMS, state);
|
||||
POKE32(SYSTEM_CTRL, value);
|
||||
}
|
||||
}
|
||||
|
@ -96,7 +96,7 @@ static void swI2CWait(void)
|
||||
it's more reliable than counter loop ..
|
||||
write 0x61 to 0x3ce and read from 0x3cf
|
||||
*/
|
||||
while(peekIO(0x3ce,0x61) & 0x10);
|
||||
while(peekIO(0x3ce, 0x61) & 0x10);
|
||||
#else
|
||||
int i, Temp;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user