]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: wilc1000: fix line over 80 chars in change_station()
authorAjay Singh <ajay.kathat@microchip.com>
Mon, 23 Apr 2018 16:33:21 +0000 (22:03 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 25 Apr 2018 13:54:15 +0000 (15:54 +0200)
Fix 'line over 80 chars' issue found by checkpatch.pl script.

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

index 5bd294dd21abd7cd50bf5fa0392d78473e78dc23..1540511710ae2e1ecf8dabed7a616cdd2e59c460 100644 (file)
@@ -1154,10 +1154,10 @@ static int get_station(struct wiphy *wiphy, struct net_device *dev,
                wilc_get_statistics(vif, &stats);
 
                sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL) |
-                                               BIT(NL80211_STA_INFO_RX_PACKETS) |
-                                               BIT(NL80211_STA_INFO_TX_PACKETS) |
-                                               BIT(NL80211_STA_INFO_TX_FAILED) |
-                                               BIT(NL80211_STA_INFO_TX_BITRATE);
+                                BIT(NL80211_STA_INFO_RX_PACKETS) |
+                                BIT(NL80211_STA_INFO_TX_PACKETS) |
+                                BIT(NL80211_STA_INFO_TX_FAILED) |
+                                BIT(NL80211_STA_INFO_TX_BITRATE);
 
                sinfo->signal = stats.rssi;
                sinfo->rx_packets = stats.rx_cnt;