]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: fixes braces {} should be used on all arms of this statement
authorLeo Kim <leo.kim@atmel.com>
Fri, 6 Nov 2015 02:13:06 +0000 (11:13 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch fixes the error reported by checkpatch.pl
for braces {} should be used on all arms of this statement

Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wlan.c

index 458eef2b4df91cb8eb2b5b462177c028a292dd25..3b097c137fd388a5f79520228df4159716d915b6 100644 (file)
@@ -1104,9 +1104,9 @@ static void wilc_wlan_handle_isr_ext(struct wilc *wilc, u32 int_status)
                if (LINUX_RX_SIZE - offset < size)
                        offset = 0;
 
-               if (p->rx_buffer)
+               if (p->rx_buffer) {
                        buffer = &p->rx_buffer[offset];
-               else {
+               else {
                        wilc_debug(N_ERR, "[wilc isr]: fail Rx Buffer is NULL...drop the packets (%d)\n", size);
                        goto _end_;
                }