aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorAybuke Ozdemir <aybuke.147@gmail.com>2014-09-25 01:49:36 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-28 23:22:21 -0400
commit9e23c1b8c3cab8fa69fa05a9c14113d74026eaf0 (patch)
treecd3920b06244554d80c024c1332fdaab19cc6067 /drivers/staging
parentStaging: vt6655: Add require space after that ',' (diff)
downloadlinux-dev-9e23c1b8c3cab8fa69fa05a9c14113d74026eaf0.tar.xz
linux-dev-9e23c1b8c3cab8fa69fa05a9c14113d74026eaf0.zip
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>
Diffstat (limited to 'drivers/staging')
-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;