Commit 675a127e authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: remove line over 80 char warnings in set_wiphy_params()



Fix 'line over 80 character' issue reported by checkpatch.pl script in
set_wiphy_params(). Directly used the 'wiphy' pointer received as
function argument instead of using 'priv->dev->ieee80211_ptr->wiphy'.

Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Reviewed-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Reviewed-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6cfa694f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1185,20 +1185,20 @@ static int set_wiphy_params(struct wiphy *wiphy, u32 changed)

	if (changed & WIPHY_PARAM_RETRY_SHORT) {
		cfg_param_val.flag  |= RETRY_SHORT;
		cfg_param_val.short_retry_limit = priv->dev->ieee80211_ptr->wiphy->retry_short;
		cfg_param_val.short_retry_limit = wiphy->retry_short;
	}
	if (changed & WIPHY_PARAM_RETRY_LONG) {
		cfg_param_val.flag |= RETRY_LONG;
		cfg_param_val.long_retry_limit = priv->dev->ieee80211_ptr->wiphy->retry_long;
		cfg_param_val.long_retry_limit = wiphy->retry_long;
	}
	if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
		cfg_param_val.flag |= FRAG_THRESHOLD;
		cfg_param_val.frag_threshold = priv->dev->ieee80211_ptr->wiphy->frag_threshold;
		cfg_param_val.frag_threshold = wiphy->frag_threshold;
	}

	if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
		cfg_param_val.flag |= RTS_THRESHOLD;
		cfg_param_val.rts_threshold = priv->dev->ieee80211_ptr->wiphy->rts_threshold;
		cfg_param_val.rts_threshold = wiphy->rts_threshold;
	}

	ret = wilc_hif_set_cfg(vif, &cfg_param_val);