staging: wilc1000: fix line over 80 char in get_key() & set_default_key()
authorAjay Singh <ajay.kathat@microchip.com>
Wed, 7 Mar 2018 01:32:26 +0000 (07:02 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 14 Mar 2018 11:59:04 +0000 (12:59 +0100)
Fix 'line over 80 characters' 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 3354bf232500c005700055785eeba5624b66ea41..92c3213e194b9f6fcad8a5cfd060516eaf3aa95a 100644 (file)
@@ -1118,8 +1118,8 @@ static int del_key(struct wiphy *wiphy, struct net_device *netdev,
 }
 
 static int get_key(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
-                  bool pairwise,
-                  const u8 *mac_addr, void *cookie, void (*callback)(void *cookie, struct key_params *))
+                  bool pairwise, const u8 *mac_addr, void *cookie,
+                  void (*callback)(void *cookie, struct key_params *))
 {
        struct wilc_priv *priv;
        struct  key_params key_params;
@@ -1145,8 +1145,8 @@ static int get_key(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
        return 0;
 }
 
-static int set_default_key(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
-                          bool unicast, bool multicast)
+static int set_default_key(struct wiphy *wiphy, struct net_device *netdev,
+                          u8 key_index, bool unicast, bool multicast)
 {
        struct wilc_priv *priv;
        struct wilc_vif *vif;