staging: wilc1000: fix line over 80 chars in get_station()
authorAjay Singh <ajay.kathat@microchip.com>
Fri, 11 May 2018 08:13:18 +0000 (13:43 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 May 2018 12:04:48 +0000 (14:04 +0200)
Fix line over 80 characters issue in get_station().

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

index 7994736..9684d34 100644 (file)
@@ -1121,7 +1121,9 @@ static int get_station(struct wiphy *wiphy, struct net_device *dev,
 
        if (vif->iftype == AP_MODE || vif->iftype == GO_MODE) {
                for (i = 0; i < NUM_STA_ASSOCIATED; i++) {
-                       if (!(memcmp(mac, priv->assoc_stainfo.sta_associated_bss[i], ETH_ALEN))) {
+                       if (!(memcmp(mac,
+                                    priv->assoc_stainfo.sta_associated_bss[i],
+                                    ETH_ALEN))) {
                                associatedsta = i;
                                break;
                        }