staging: wilc1000: fix line over 80 char issue in clear_shadow_scan()
authorAjay Singh <ajay.kathat@microchip.com>
Mon, 23 Apr 2018 16:33:10 +0000 (22:03 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 25 Apr 2018 13:54:13 +0000 (15:54 +0200)
Remove 'line over 80 char' issue found by checkpatch.pl script.

Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c

index 7dfca74..075413f 100644 (file)
@@ -173,20 +173,21 @@ static void clear_shadow_scan(void)
 {
        int i;
 
-       if (op_ifcs == 0) {
-               del_timer_sync(&aging_timer);
+       if (op_ifcs != 0)
+               return;
 
-               for (i = 0; i < last_scanned_cnt; i++) {
-                       if (last_scanned_shadow[last_scanned_cnt].ies) {
-                               kfree(last_scanned_shadow[i].ies);
-                               last_scanned_shadow[last_scanned_cnt].ies = NULL;
-                       }
+       del_timer_sync(&aging_timer);
 
-                       kfree(last_scanned_shadow[i].join_params);
-                       last_scanned_shadow[i].join_params = NULL;
+       for (i = 0; i < last_scanned_cnt; i++) {
+               if (last_scanned_shadow[last_scanned_cnt].ies) {
+                       kfree(last_scanned_shadow[i].ies);
+                       last_scanned_shadow[last_scanned_cnt].ies = NULL;
                }
-               last_scanned_cnt = 0;
+
+               kfree(last_scanned_shadow[i].join_params);
+               last_scanned_shadow[i].join_params = NULL;
        }
+       last_scanned_cnt = 0;
 }
 
 static u32 get_rssi_avg(struct network_info *network_info)