|
@@ -102,8 +102,7 @@ static void ieee80211_offchannel_ps_disable(struct ieee80211_sub_if_data *sdata)
|
|
|
ieee80211_sta_reset_conn_monitor(sdata);
|
|
|
}
|
|
|
|
|
|
-void ieee80211_offchannel_stop_vifs(struct ieee80211_local *local,
|
|
|
- bool offchannel_ps_enable)
|
|
|
+void ieee80211_offchannel_stop_vifs(struct ieee80211_local *local)
|
|
|
{
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
|
@@ -134,8 +133,7 @@ void ieee80211_offchannel_stop_vifs(struct ieee80211_local *local,
|
|
|
|
|
|
if (sdata->vif.type != NL80211_IFTYPE_MONITOR) {
|
|
|
netif_tx_stop_all_queues(sdata->dev);
|
|
|
- if (offchannel_ps_enable &&
|
|
|
- (sdata->vif.type == NL80211_IFTYPE_STATION) &&
|
|
|
+ if (sdata->vif.type == NL80211_IFTYPE_STATION &&
|
|
|
sdata->u.mgd.associated)
|
|
|
ieee80211_offchannel_ps_enable(sdata);
|
|
|
}
|
|
@@ -143,8 +141,7 @@ void ieee80211_offchannel_stop_vifs(struct ieee80211_local *local,
|
|
|
mutex_unlock(&local->iflist_mtx);
|
|
|
}
|
|
|
|
|
|
-void ieee80211_offchannel_return(struct ieee80211_local *local,
|
|
|
- bool offchannel_ps_disable)
|
|
|
+void ieee80211_offchannel_return(struct ieee80211_local *local)
|
|
|
{
|
|
|
struct ieee80211_sub_if_data *sdata;
|
|
|
|
|
@@ -163,11 +160,9 @@ void ieee80211_offchannel_return(struct ieee80211_local *local,
|
|
|
continue;
|
|
|
|
|
|
/* Tell AP we're back */
|
|
|
- if (offchannel_ps_disable &&
|
|
|
- sdata->vif.type == NL80211_IFTYPE_STATION) {
|
|
|
- if (sdata->u.mgd.associated)
|
|
|
- ieee80211_offchannel_ps_disable(sdata);
|
|
|
- }
|
|
|
+ if (sdata->vif.type == NL80211_IFTYPE_STATION &&
|
|
|
+ sdata->u.mgd.associated)
|
|
|
+ ieee80211_offchannel_ps_disable(sdata);
|
|
|
|
|
|
if (sdata->vif.type != NL80211_IFTYPE_MONITOR) {
|
|
|
/*
|
|
@@ -385,7 +380,7 @@ void ieee80211_sw_roc_work(struct work_struct *work)
|
|
|
local->tmp_channel = NULL;
|
|
|
ieee80211_hw_config(local, 0);
|
|
|
|
|
|
- ieee80211_offchannel_return(local, true);
|
|
|
+ ieee80211_offchannel_return(local);
|
|
|
}
|
|
|
|
|
|
ieee80211_recalc_idle(local);
|