aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAybuke Ozdemir <[email protected]>2014-09-25 01:49:36 +0300
committerGreg Kroah-Hartman <[email protected]>2014-09-28 23:22:21 -0400
commit9e23c1b8c3cab8fa69fa05a9c14113d74026eaf0 (patch)
treecd3920b06244554d80c024c1332fdaab19cc6067
parent6e61b441ceb5462d7fe14eb1697a61cb645dc871 (diff)
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 <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/vt6655/device_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
index ebcf63e1fb1e..1dff9d4672b5 100644
--- a/drivers/staging/vt6655/device_main.c
+++ b/drivers/staging/vt6655/device_main.c
@@ -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;