aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mlme.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2009-01-06 12:13:18 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-01-29 15:59:56 -0500
commit46f2c4bd7e2ba2cfedbcd4fe15d316eebc608cba (patch)
tree70df1219af8e137032a01560e6ca8ac216dbf24c /net/mac80211/mlme.c
parente9aeabaeb9a0bece50100dc74bbd720a68cb8f5c (diff)
mac80211: move dynamic PS timeout to hardware config
This will be needed for drivers that set the IEEE80211_HW_NO_STACK_DYNAMIC_PS flag and still want to handle dynamic PS. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Reviewed-by: Kalle Valo <kalle.valo@nokia.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r--net/mac80211/mlme.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index 6a90171c859f..7709e7645671 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -777,9 +777,10 @@ static void ieee80211_set_associated(struct ieee80211_sub_if_data *sdata,
777 777
778 if (local->powersave && 778 if (local->powersave &&
779 !(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS)) { 779 !(local->hw.flags & IEEE80211_HW_NO_STACK_DYNAMIC_PS)) {
780 if (local->dynamic_ps_timeout > 0) 780 if (local->hw.conf.dynamic_ps_timeout > 0)
781 mod_timer(&local->dynamic_ps_timer, jiffies + 781 mod_timer(&local->dynamic_ps_timer, jiffies +
782 msecs_to_jiffies(local->dynamic_ps_timeout)); 782 msecs_to_jiffies(
783 local->hw.conf.dynamic_ps_timeout));
783 else { 784 else {
784 ieee80211_send_nullfunc(local, sdata, 1); 785 ieee80211_send_nullfunc(local, sdata, 1);
785 conf->flags |= IEEE80211_CONF_PS; 786 conf->flags |= IEEE80211_CONF_PS;