Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

staging: wilc1000: fix line over 80 char in mgmt_tx_cancel_wait()



Fix 'line over 80 char' issue found in checkpatch.pl script.

Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Reviewed-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0a0dac38
Loading
Loading
Loading
Loading
+6 −2
Original line number Original line Diff line number Diff line
@@ -1705,9 +1705,13 @@ static int mgmt_tx_cancel_wait(struct wiphy *wiphy,
	wfi_drv->p2p_timeout = jiffies;
	wfi_drv->p2p_timeout = jiffies;


	if (!priv->p2p_listen_state) {
	if (!priv->p2p_listen_state) {
		struct wilc_wfi_p2p_listen_params *params;

		params = &priv->remain_on_ch_params;

		cfg80211_remain_on_channel_expired(priv->wdev,
		cfg80211_remain_on_channel_expired(priv->wdev,
						   priv->remain_on_ch_params.listen_cookie,
						   params->listen_cookie,
						   priv->remain_on_ch_params.listen_ch,
						   params->listen_ch,
						   GFP_KERNEL);
						   GFP_KERNEL);
	}
	}