aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mlme.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r--net/mac80211/mlme.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index c59bc509ed6f..bb7e5189e27e 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -2471,9 +2471,11 @@ static void ieee80211_rx_mgmt_beacon(struct ieee80211_sub_if_data *sdata,
2471 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) { 2471 if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) {
2472 if (directed_tim) { 2472 if (directed_tim) {
2473 if (local->hw.conf.dynamic_ps_timeout > 0) { 2473 if (local->hw.conf.dynamic_ps_timeout > 0) {
2474 local->hw.conf.flags &= ~IEEE80211_CONF_PS; 2474 if (local->hw.conf.flags & IEEE80211_CONF_PS) {
2475 ieee80211_hw_config(local, 2475 local->hw.conf.flags &= ~IEEE80211_CONF_PS;
2476 IEEE80211_CONF_CHANGE_PS); 2476 ieee80211_hw_config(local,
2477 IEEE80211_CONF_CHANGE_PS);
2478 }
2477 ieee80211_send_nullfunc(local, sdata, 0); 2479 ieee80211_send_nullfunc(local, sdata, 0);
2478 } else if (!local->pspolling && sdata->u.mgd.powersave) { 2480 } else if (!local->pspolling && sdata->u.mgd.powersave) {
2479 local->pspolling = true; 2481 local->pspolling = true;