Message ID | 1248709105-12722-1-git-send-email-lrodriguez@atheros.com (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index f60a831..ee83125 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -760,7 +760,7 @@ void ieee80211_dynamic_ps_timer(unsigned long data) { struct ieee80211_local *local = (void *) data; - if (local->quiescing) + if (local->quiescing || local->suspended) return; queue_work(local->hw.workqueue, &local->dynamic_ps_enable_work);
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> --- net/mac80211/mlme.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)