aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/wext.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/mac80211/wext.c')
-rw-r--r--net/mac80211/wext.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/net/mac80211/wext.c b/net/mac80211/wext.c
index 3fc1b903bfbc..3f2db0bda46c 100644
--- a/net/mac80211/wext.c
+++ b/net/mac80211/wext.c
@@ -863,17 +863,19 @@ static int ieee80211_ioctl_siwpower(struct net_device *dev,
863 timeout = wrq->value / 1000; 863 timeout = wrq->value / 1000;
864 864
865set: 865set:
866 if (ps == local->powersave && timeout == local->dynamic_ps_timeout) 866 if (ps == local->powersave && timeout == conf->dynamic_ps_timeout)
867 return ret; 867 return ret;
868 868
869 local->powersave = ps; 869 local->powersave = ps;
870 local->dynamic_ps_timeout = timeout; 870 conf->dynamic_ps_timeout = timeout;
871 871
872 if (!(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS) && 872 if (local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS) {
873 (sdata->u.sta.flags & IEEE80211_STA_ASSOCIATED)) { 873 ret = ieee80211_hw_config(local,
874 if (local->dynamic_ps_timeout > 0) 874 IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT);
875 } else if (sdata->u.sta.flags & IEEE80211_STA_ASSOCIATED) {
876 if (conf->dynamic_ps_timeout > 0)
875 mod_timer(&local->dynamic_ps_timer, jiffies + 877 mod_timer(&local->dynamic_ps_timer, jiffies +
876 msecs_to_jiffies(local->dynamic_ps_timeout)); 878 msecs_to_jiffies(conf->dynamic_ps_timeout));
877 else { 879 else {
878 if (local->powersave) { 880 if (local->powersave) {
879 ieee80211_send_nullfunc(local, sdata, 1); 881 ieee80211_send_nullfunc(local, sdata, 1);