mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-18 05:36:57 +08:00

[mac80211] 08a42ef mac80211: fix memory leak on filtered powersave frames daeda8a mac80211: pass phy name to hostapd_set_bss_options 7ca9b82 mac80211: Fix wpa_supplicant config removal ubus call bf3158b mac80211: backport the new tasklet API 0bb5d39 mac80211: add minstrel fixes that fix mt76 issues in legacy mode [ath10k] c3b2efa linux-firmware: ath10k: add board firmware packages 655091e ath10k-ct-firmware: switch to linux-firmware board binaries 61e381d ath10k-firmware: remove unused package
22 lines
753 B
Diff
22 lines
753 B
Diff
--- a/nl80211.h
|
|
+++ b/nl80211.h
|
|
@@ -2515,6 +2515,9 @@ enum nl80211_commands {
|
|
* @NL80211_ATTR_HE_6GHZ_CAPABILITY: HE 6 GHz Band Capability element (from
|
|
* association request when used with NL80211_CMD_NEW_STATION).
|
|
*
|
|
+ * @NL80211_ATTR_WIPHY_ANTENNA_GAIN: Configured antenna gain. Used to reduce
|
|
+ * transmit power to stay within regulatory limits. u32, dBi.
|
|
+ *
|
|
* @NUM_NL80211_ATTR: total number of nl80211_attrs available
|
|
* @NL80211_ATTR_MAX: highest attribute number currently defined
|
|
* @__NL80211_ATTR_AFTER_LAST: internal use
|
|
@@ -2997,6 +3000,8 @@ enum nl80211_attrs {
|
|
|
|
NL80211_ATTR_HE_6GHZ_CAPABILITY,
|
|
|
|
+ NL80211_ATTR_WIPHY_ANTENNA_GAIN,
|
|
+
|
|
/* add attributes here, update the policy in nl80211.c */
|
|
|
|
__NL80211_ATTR_AFTER_LAST,
|