diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-04-22 06:40:07 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-04-22 16:57:20 -0400 |
commit | e255d5eb2b478eec1416b46aea03798b64355402 (patch) | |
tree | db4ccb922a585adb00c490b77dc4764ccb39964e /net/mac80211/wext.c | |
parent | 1d4df3a50f40a731fc03c86a76535ed141b0e4bc (diff) |
mac80211: remove IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT
Just setting IEEE80211_CONF_CHANGE_PS should be sufficient
for changes in the power saving things. The driver already
tells us whether it wants notification of dynps via the
"have dynps support" hw flag.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Reviewed-by: Kalle Valo <kalle.valo@iki.fi>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/wext.c')
-rw-r--r-- | net/mac80211/wext.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/mac80211/wext.c b/net/mac80211/wext.c index 1eb6d8642a77..1a649da42c41 100644 --- a/net/mac80211/wext.c +++ b/net/mac80211/wext.c | |||
@@ -622,8 +622,7 @@ static int ieee80211_ioctl_siwpower(struct net_device *dev, | |||
622 | conf->dynamic_ps_timeout = timeout; | 622 | conf->dynamic_ps_timeout = timeout; |
623 | 623 | ||
624 | if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) | 624 | if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS) |
625 | ieee80211_hw_config(local, | 625 | ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS); |
626 | IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT); | ||
627 | 626 | ||
628 | ieee80211_recalc_ps(local, -1); | 627 | ieee80211_recalc_ps(local, -1); |
629 | 628 | ||