diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/net/mac80211.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index fe8b9dae4dee..47316a653ae1 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -1109,7 +1109,10 @@ enum ieee80211_hw_flags { | |||
1109 | * @sta_data_size: size (in bytes) of the drv_priv data area | 1109 | * @sta_data_size: size (in bytes) of the drv_priv data area |
1110 | * within &struct ieee80211_sta. | 1110 | * within &struct ieee80211_sta. |
1111 | * | 1111 | * |
1112 | * @max_rates: maximum number of alternate rate retry stages | 1112 | * @max_rates: maximum number of alternate rate retry stages the hw |
1113 | * can handle. | ||
1114 | * @max_report_rates: maximum number of alternate rate retry stages | ||
1115 | * the hw can report back. | ||
1113 | * @max_rate_tries: maximum number of tries for each stage | 1116 | * @max_rate_tries: maximum number of tries for each stage |
1114 | * | 1117 | * |
1115 | * @napi_weight: weight used for NAPI polling. You must specify an | 1118 | * @napi_weight: weight used for NAPI polling. You must specify an |
@@ -1131,6 +1134,7 @@ struct ieee80211_hw { | |||
1131 | u16 max_listen_interval; | 1134 | u16 max_listen_interval; |
1132 | s8 max_signal; | 1135 | s8 max_signal; |
1133 | u8 max_rates; | 1136 | u8 max_rates; |
1137 | u8 max_report_rates; | ||
1134 | u8 max_rate_tries; | 1138 | u8 max_rate_tries; |
1135 | }; | 1139 | }; |
1136 | 1140 | ||