Commit 9e23c1b8c3cab8fa69fa05a9c14113d74026eaf0

Authored by Aybuke Ozdemir
Committed by Greg Kroah-Hartman
1 parent 6e61b441ce

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>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

drivers/staging/vt6655/device_main.c
... ... @@ -2521,9 +2521,9 @@
2521 2521  
2522 2522 if (memcmp(tmpbuffer, "USA", 3) == 0) {
2523 2523 result = ZoneType_USA;
2524   - } else if(memcmp(tmpbuffer, "JAPAN", 5) == 0) {
  2524 + } else if (memcmp(tmpbuffer, "JAPAN", 5) == 0) {
2525 2525 result = ZoneType_Japan;
2526   - } else if(memcmp(tmpbuffer, "EUROPE", 5) == 0) {
  2526 + } else if (memcmp(tmpbuffer, "EUROPE", 5) == 0) {
2527 2527 result = ZoneType_Europe;
2528 2528 } else {
2529 2529 result = -1;