Staging: vt6655: Add require space before that '('
This patch fixes checkpatch.pl error in file device_main.c ERROR: space required before the open parenthesis '(' Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6e61b441ce
commit
9e23c1b8c3
@ -2521,9 +2521,9 @@ int Config_FileOperation(struct vnt_private *pDevice,
|
||||
|
||||
if (memcmp(tmpbuffer, "USA", 3) == 0) {
|
||||
result = ZoneType_USA;
|
||||
} else if(memcmp(tmpbuffer, "JAPAN", 5) == 0) {
|
||||
} else if (memcmp(tmpbuffer, "JAPAN", 5) == 0) {
|
||||
result = ZoneType_Japan;
|
||||
} else if(memcmp(tmpbuffer, "EUROPE", 5) == 0) {
|
||||
} else if (memcmp(tmpbuffer, "EUROPE", 5) == 0) {
|
||||
result = ZoneType_Europe;
|
||||
} else {
|
||||
result = -1;
|
||||
|
Loading…
Reference in New Issue
Block a user