From: Ajay Singh Date: Wed, 7 Mar 2018 01:32:26 +0000 (+0530) Subject: staging: wilc1000: fix line over 80 char in get_key() & set_default_key() X-Git-Tag: v4.17-rc1~124^2~194 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6fa02f2d0b721ca3658c558d068fd96e68f733ea;p=thirdparty%2Flinux.git staging: wilc1000: fix line over 80 char in get_key() & set_default_key() Fix 'line over 80 characters' issue found by checkpatch.pl script. Signed-off-by: Ajay Singh Reviewed-by: Claudiu Beznea Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c index 3354bf232500c..92c3213e194b9 100644 --- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c +++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c @@ -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;