diff options
author | David S. Miller <davem@davemloft.net> | 2018-03-22 18:19:10 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-22 18:19:10 +0100 |
commit | e0645d9b9673560dab6e6274ee1d7583a2b51350 (patch) | |
tree | f2090eae8b8cf3d459ba832df40c89361e59cf68 /include | |
parent | net: dsa: Fix functional dsa-loop dependency on FIXED_PHY (diff) | |
parent | ath9k_htc: use non-QoS NDP for AP probing (diff) | |
download | linux-e0645d9b9673560dab6e6274ee1d7583a2b51350.tar.xz linux-e0645d9b9673560dab6e6274ee1d7583a2b51350.zip |
Merge tag 'mac80211-for-davem-2018-03-21' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211
Johannes Berg says:
====================
Two more fixes (in three patches):
* ath9k_htc doesn't like QoS NDP frames, use regular ones
* hwsim: set up wmediumd for radios created later
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/mac80211.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index c96511fa9198..2b581bd93812 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h @@ -2063,6 +2063,9 @@ struct ieee80211_txq { * @IEEE80211_HW_SUPPORTS_TDLS_BUFFER_STA: Hardware supports buffer STA on * TDLS links. * + * @IEEE80211_HW_DOESNT_SUPPORT_QOS_NDP: The driver (or firmware) doesn't + * support QoS NDP for AP probing - that's most likely a driver bug. + * * @NUM_IEEE80211_HW_FLAGS: number of hardware flags, used for sizing arrays */ enum ieee80211_hw_flags { @@ -2106,6 +2109,7 @@ enum ieee80211_hw_flags { IEEE80211_HW_REPORTS_LOW_ACK, IEEE80211_HW_SUPPORTS_TX_FRAG, IEEE80211_HW_SUPPORTS_TDLS_BUFFER_STA, + IEEE80211_HW_DOESNT_SUPPORT_QOS_NDP, /* keep last, obviously */ NUM_IEEE80211_HW_FLAGS |