diff options
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 841f7f804bb6..3b83a80e3fe0 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -93,12 +93,9 @@ struct ieee80211_ht_bss_info { | |||
93 | * enum ieee80211_max_queues - maximum number of queues | 93 | * enum ieee80211_max_queues - maximum number of queues |
94 | * | 94 | * |
95 | * @IEEE80211_MAX_QUEUES: Maximum number of regular device queues. | 95 | * @IEEE80211_MAX_QUEUES: Maximum number of regular device queues. |
96 | * @IEEE80211_MAX_AMPDU_QUEUES: Maximum number of queues usable | ||
97 | * for A-MPDU operation. | ||
98 | */ | 96 | */ |
99 | enum ieee80211_max_queues { | 97 | enum ieee80211_max_queues { |
100 | IEEE80211_MAX_QUEUES = 4, | 98 | IEEE80211_MAX_QUEUES = 4, |
101 | IEEE80211_MAX_AMPDU_QUEUES = 16, | ||
102 | }; | 99 | }; |
103 | 100 | ||
104 | /** | 101 | /** |
@@ -952,12 +949,6 @@ enum ieee80211_hw_flags { | |||
952 | * data packets. WMM/QoS requires at least four, these | 949 | * data packets. WMM/QoS requires at least four, these |
953 | * queues need to have configurable access parameters. | 950 | * queues need to have configurable access parameters. |
954 | * | 951 | * |
955 | * @ampdu_queues: number of available hardware transmit queues | ||
956 | * for A-MPDU packets, these have no access parameters | ||
957 | * because they're used only for A-MPDU frames. Note that | ||
958 | * mac80211 will not currently use any of the regular queues | ||
959 | * for aggregation. | ||
960 | * | ||
961 | * @rate_control_algorithm: rate control algorithm for this hardware. | 952 | * @rate_control_algorithm: rate control algorithm for this hardware. |
962 | * If unset (NULL), the default algorithm will be used. Must be | 953 | * If unset (NULL), the default algorithm will be used. Must be |
963 | * set before calling ieee80211_register_hw(). | 954 | * set before calling ieee80211_register_hw(). |
@@ -982,7 +973,6 @@ struct ieee80211_hw { | |||
982 | int vif_data_size; | 973 | int vif_data_size; |
983 | int sta_data_size; | 974 | int sta_data_size; |
984 | u16 queues; | 975 | u16 queues; |
985 | u16 ampdu_queues; | ||
986 | u16 max_listen_interval; | 976 | u16 max_listen_interval; |
987 | s8 max_signal; | 977 | s8 max_signal; |
988 | u8 max_rates; | 978 | u8 max_rates; |
@@ -1372,8 +1362,8 @@ enum ieee80211_ampdu_mlme_action { | |||
1372 | * @get_tx_stats: Get statistics of the current TX queue status. This is used | 1362 | * @get_tx_stats: Get statistics of the current TX queue status. This is used |
1373 | * to get number of currently queued packets (queue length), maximum queue | 1363 | * to get number of currently queued packets (queue length), maximum queue |
1374 | * size (limit), and total number of packets sent using each TX queue | 1364 | * size (limit), and total number of packets sent using each TX queue |
1375 | * (count). The 'stats' pointer points to an array that has hw->queues + | 1365 | * (count). The 'stats' pointer points to an array that has hw->queues |
1376 | * hw->ampdu_queues items. | 1366 | * items. |
1377 | * | 1367 | * |
1378 | * @get_tsf: Get the current TSF timer value from firmware/hardware. Currently, | 1368 | * @get_tsf: Get the current TSF timer value from firmware/hardware. Currently, |
1379 | * this is only used for IBSS mode BSSID merging and debugging. Is not a | 1369 | * this is only used for IBSS mode BSSID merging and debugging. Is not a |