Staging: vt6655: Add require space before that '('
authorAybuke Ozdemir <aybuke.147@gmail.com>
Wed, 24 Sep 2014 22:49:36 +0000 (01:49 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 29 Sep 2014 03:22:21 +0000 (23:22 -0400)
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>
drivers/staging/vt6655/device_main.c

index ebcf63e1fb1e3891b550e8f125fb7f16627345c6..1dff9d4672b52818b6e56596c51a2b7259d275bf 100644 (file)
@@ -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;