staging: wilc1000: fixes braces {} should be used on all arms of this statement
authorLeo Kim <leo.kim@atmel.com>
Thu, 5 Nov 2015 05:36:29 +0000 (14:36 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Nov 2015 04:02:47 +0000 (20:02 -0800)
This patch fixes the checks 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/linux_wlan.c

index 2fac99d059023f5500ca8c207f4d873705560e8f..893c741794b8d309fb8540ccc6eb6103c5bebfef 100644 (file)
@@ -477,12 +477,11 @@ int linux_wlan_get_firmware(struct net_device *dev)
        nic = netdev_priv(dev);
        wilc = nic->wilc;
 
-       if (nic->iftype == AP_MODE)
+       if (nic->iftype == AP_MODE) {
                firmware = AP_FIRMWARE;
-       else if (nic->iftype == STATION_MODE)
+       } else if (nic->iftype == STATION_MODE) {
                firmware = STA_FIRMWARE;
-
-       else {
+       } else {
                PRINT_D(INIT_DBG, "Get P2P_CONCURRENCY_FIRMWARE\n");
                firmware = P2P_CONCURRENCY_FIRMWARE;
        }
This page took 0.025702 seconds and 5 git commands to generate.