diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-03-30 02:43:32 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-04-10 14:54:08 -0400 |
commit | 8f727ef3c4859f2c397a7609beb845dcd66729f5 (patch) | |
tree | 9843df4721d5510c464f7ea4e1f4da940b247c80 /net/mac80211/driver-ops.h | |
parent | 7213cf2cb0dfbb4d6b55a1da000d34338f76c0e3 (diff) |
mac80211: notify driver of rate control updates
Devices that have internal rate control need to be
notified when the bandwidth or SMPS state changes
just like external rate control algorithms get a
notification now.
Add this notification and clarify the change bits
while at it, the HT_CHANGED bit really meant only
bandwidth changed.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/driver-ops.h')
-rw-r--r-- | net/mac80211/driver-ops.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net/mac80211/driver-ops.h b/net/mac80211/driver-ops.h index e8dbda1b5b8a..0eb2bc003058 100644 --- a/net/mac80211/driver-ops.h +++ b/net/mac80211/driver-ops.h | |||
@@ -476,6 +476,21 @@ int drv_sta_state(struct ieee80211_local *local, | |||
476 | return ret; | 476 | return ret; |
477 | } | 477 | } |
478 | 478 | ||
479 | static inline void drv_sta_rc_update(struct ieee80211_local *local, | ||
480 | struct ieee80211_sub_if_data *sdata, | ||
481 | struct ieee80211_sta *sta, u32 changed) | ||
482 | { | ||
483 | sdata = get_bss_sdata(sdata); | ||
484 | check_sdata_in_driver(sdata); | ||
485 | |||
486 | trace_drv_sta_rc_update(local, sdata, sta, changed); | ||
487 | if (local->ops->sta_rc_update) | ||
488 | local->ops->sta_rc_update(&local->hw, &sdata->vif, | ||
489 | sta, changed); | ||
490 | |||
491 | trace_drv_return_void(local); | ||
492 | } | ||
493 | |||
479 | static inline int drv_conf_tx(struct ieee80211_local *local, | 494 | static inline int drv_conf_tx(struct ieee80211_local *local, |
480 | struct ieee80211_sub_if_data *sdata, u16 queue, | 495 | struct ieee80211_sub_if_data *sdata, u16 queue, |
481 | const struct ieee80211_tx_queue_params *params) | 496 | const struct ieee80211_tx_queue_params *params) |