aboutsummaryrefslogtreecommitdiffstats
path: root/include
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 /include
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 'include')
-rw-r--r--include/net/mac80211.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 76537f103872..83ee8a212296 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -515,6 +515,7 @@ static inline int __deprecated __IEEE80211_CONF_SHORT_SLOT_TIME(void)
515 * @IEEE80211_CONF_CHANGE_LISTEN_INTERVAL: the listen interval changed 515 * @IEEE80211_CONF_CHANGE_LISTEN_INTERVAL: the listen interval changed
516 * @IEEE80211_CONF_CHANGE_RADIOTAP: the radiotap flag changed 516 * @IEEE80211_CONF_CHANGE_RADIOTAP: the radiotap flag changed
517 * @IEEE80211_CONF_CHANGE_PS: the PS flag changed 517 * @IEEE80211_CONF_CHANGE_PS: the PS flag changed
518 * @IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT: the dynamic PS timeout changed
518 * @IEEE80211_CONF_CHANGE_POWER: the TX power changed 519 * @IEEE80211_CONF_CHANGE_POWER: the TX power changed
519 * @IEEE80211_CONF_CHANGE_CHANNEL: the channel/channel_type changed 520 * @IEEE80211_CONF_CHANGE_CHANNEL: the channel/channel_type changed
520 * @IEEE80211_CONF_CHANGE_RETRY_LIMITS: retry limits changed 521 * @IEEE80211_CONF_CHANGE_RETRY_LIMITS: retry limits changed
@@ -525,9 +526,10 @@ enum ieee80211_conf_changed {
525 IEEE80211_CONF_CHANGE_LISTEN_INTERVAL = BIT(2), 526 IEEE80211_CONF_CHANGE_LISTEN_INTERVAL = BIT(2),
526 IEEE80211_CONF_CHANGE_RADIOTAP = BIT(3), 527 IEEE80211_CONF_CHANGE_RADIOTAP = BIT(3),
527 IEEE80211_CONF_CHANGE_PS = BIT(4), 528 IEEE80211_CONF_CHANGE_PS = BIT(4),
528 IEEE80211_CONF_CHANGE_POWER = BIT(5), 529 IEEE80211_CONF_CHANGE_DYNPS_TIMEOUT = BIT(5),
529 IEEE80211_CONF_CHANGE_CHANNEL = BIT(6), 530 IEEE80211_CONF_CHANGE_POWER = BIT(6),
530 IEEE80211_CONF_CHANGE_RETRY_LIMITS = BIT(7), 531 IEEE80211_CONF_CHANGE_CHANNEL = BIT(7),
532 IEEE80211_CONF_CHANGE_RETRY_LIMITS = BIT(8),
531}; 533};
532 534
533/** 535/**
@@ -540,6 +542,7 @@ enum ieee80211_conf_changed {
540 * @listen_interval: listen interval in units of beacon interval 542 * @listen_interval: listen interval in units of beacon interval
541 * @flags: configuration flags defined above 543 * @flags: configuration flags defined above
542 * @power_level: requested transmit power (in dBm) 544 * @power_level: requested transmit power (in dBm)
545 * @dynamic_ps_timeout: dynamic powersave timeout (in ms)
543 * @channel: the channel to tune to 546 * @channel: the channel to tune to
544 * @channel_type: the channel (HT) type 547 * @channel_type: the channel (HT) type
545 * @long_frame_max_tx_count: Maximum number of transmissions for a "long" frame 548 * @long_frame_max_tx_count: Maximum number of transmissions for a "long" frame
@@ -552,7 +555,7 @@ enum ieee80211_conf_changed {
552struct ieee80211_conf { 555struct ieee80211_conf {
553 int beacon_int; 556 int beacon_int;
554 u32 flags; 557 u32 flags;
555 int power_level; 558 int power_level, dynamic_ps_timeout;
556 559
557 u16 listen_interval; 560 u16 listen_interval;
558 bool radio_enabled; 561 bool radio_enabled;