Browse Source

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>
Aybuke Ozdemir 11 years ago
parent
commit
9e23c1b8c3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/staging/vt6655/device_main.c

+ 2 - 2
drivers/staging/vt6655/device_main.c

@@ -2521,9 +2521,9 @@ int Config_FileOperation(struct vnt_private *pDevice,
 
 
 	if (memcmp(tmpbuffer, "USA", 3) == 0) {
 	if (memcmp(tmpbuffer, "USA", 3) == 0) {
 		result = ZoneType_USA;
 		result = ZoneType_USA;
-	} else if(memcmp(tmpbuffer, "JAPAN", 5) == 0) {
+	} else if (memcmp(tmpbuffer, "JAPAN", 5) == 0) {
 		result = ZoneType_Japan;
 		result = ZoneType_Japan;
-	} else if(memcmp(tmpbuffer, "EUROPE", 5) == 0) {
+	} else if (memcmp(tmpbuffer, "EUROPE", 5) == 0) {
 		result = ZoneType_Europe;
 		result = ZoneType_Europe;
 	} else {
 	} else {
 		result = -1;
 		result = -1;