diff options
author | Johannes Berg <johannes.berg@intel.com> | 2011-09-29 10:04:27 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-09-30 15:57:10 -0400 |
commit | c868cb35d013896ab6a80a554fb88baef06cedcd (patch) | |
tree | 48ed06dcf3c815e61f38f867e517d5a5dcfa6d79 /net/mac80211/sta_info.h | |
parent | 042ec4533720122e6cb93dd9f3b6a75fe2fcff16 (diff) |
mac80211: unify TIM bit handling
Currently, the TIM bit for a given station is set
and cleared all over the place. Since the logic to
set/clear it will become much more complex when we
add uAPSD support, as a first step let's collect
the entire logic in one place. This requires a few
small adjustments to other places.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r-- | net/mac80211/sta_info.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h index c10e2e8632b5..c9ffb7ce636b 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h | |||
@@ -528,8 +528,7 @@ int sta_info_destroy_addr(struct ieee80211_sub_if_data *sdata, | |||
528 | int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata, | 528 | int sta_info_destroy_addr_bss(struct ieee80211_sub_if_data *sdata, |
529 | const u8 *addr); | 529 | const u8 *addr); |
530 | 530 | ||
531 | void sta_info_set_tim_bit(struct sta_info *sta); | 531 | void sta_info_recalc_tim(struct sta_info *sta); |
532 | void sta_info_clear_tim_bit(struct sta_info *sta); | ||
533 | 532 | ||
534 | void sta_info_init(struct ieee80211_local *local); | 533 | void sta_info_init(struct ieee80211_local *local); |
535 | void sta_info_stop(struct ieee80211_local *local); | 534 | void sta_info_stop(struct ieee80211_local *local); |