diff options
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r-- | net/mac80211/sta_info.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h index 350578c396c0..63dfdb5e91da 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h | |||
@@ -296,9 +296,9 @@ struct sta_ampdu_mlme { | |||
296 | * @sta: station information we share with the driver | 296 | * @sta: station information we share with the driver |
297 | * @sta_state: duplicates information about station state (for debug) | 297 | * @sta_state: duplicates information about station state (for debug) |
298 | * @beacon_loss_count: number of times beacon loss has triggered | 298 | * @beacon_loss_count: number of times beacon loss has triggered |
299 | * @supports_40mhz: tracks whether the station advertised 40 MHz support | ||
300 | * as we overwrite its HT parameters with the currently used value | ||
301 | * @rcu_head: RCU head used for freeing this station struct | 299 | * @rcu_head: RCU head used for freeing this station struct |
300 | * @cur_max_bandwidth: maximum bandwidth to use for TX to the station, | ||
301 | * taken from HT/VHT capabilities or VHT operating mode notification | ||
302 | */ | 302 | */ |
303 | struct sta_info { | 303 | struct sta_info { |
304 | /* General information, mostly static */ | 304 | /* General information, mostly static */ |
@@ -400,11 +400,11 @@ struct sta_info { | |||
400 | } debugfs; | 400 | } debugfs; |
401 | #endif | 401 | #endif |
402 | 402 | ||
403 | enum ieee80211_sta_rx_bandwidth cur_max_bandwidth; | ||
404 | |||
403 | unsigned int lost_packets; | 405 | unsigned int lost_packets; |
404 | unsigned int beacon_loss_count; | 406 | unsigned int beacon_loss_count; |
405 | 407 | ||
406 | bool supports_40mhz; | ||
407 | |||
408 | /* keep last! */ | 408 | /* keep last! */ |
409 | struct ieee80211_sta sta; | 409 | struct ieee80211_sta sta; |
410 | }; | 410 | }; |