git: a78be09e4d1a - main - net80211: add more 802.11ac Element IDs

From: Bjoern A. Zeeb <bz_at_FreeBSD.org>
Date: Fri, 29 Jul 2022 15:15:09 UTC
The branch main has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=a78be09e4d1aa8a2117f71d96093d4884c211903

commit a78be09e4d1aa8a2117f71d96093d4884c211903
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2022-07-28 23:59:08 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2022-07-29 15:10:15 +0000

    net80211: add more 802.11ac Element IDs
    
    Add more Element IDs for VHT (11ac) to complete the current list
    and we can use them if/as needed.
    
    Sposnored by:   The FreeBSD Foundation
    MFC after:      1 week
    Reviewed by:    adrian
    Differential Revision: https://reviews.freebsd.org/D35977
---
 sys/net80211/ieee80211.h | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/sys/net80211/ieee80211.h b/sys/net80211/ieee80211.h
index 0e53bc259a5d..715bb3da898e 100644
--- a/sys/net80211/ieee80211.h
+++ b/sys/net80211/ieee80211.h
@@ -1009,10 +1009,16 @@ enum {
 	IEEE80211_ELEMID_MESHPXUC	= 138,
 	IEEE80211_ELEMID_MESHAH		= 60, /* XXX: remove */
 
-	/* 802.11ac */
+	/* 802.11ac-2013, Table 8-54-Element IDs */
 	IEEE80211_ELEMID_VHT_CAP	= 191,
 	IEEE80211_ELEMID_VHT_OPMODE	= 192,
+	IEEE80211_ELEMID_EXTENDED_BSS_LOAD = 193,
+	IEEE80211_ELEMID_WIDE_BW_CHANNEL_SWITCH = 194,
 	IEEE80211_ELEMID_VHT_PWR_ENV	= 195,
+	IEEE80211_ELEMID_CHANNEL_SWITCH_WRAPPER = 196,
+	IEEE80211_ELEMID_AID		= 197,
+	IEEE80211_ELEMID_QUIET_CHANNEL	= 198,
+	IEEE80211_ELEMID_OPMODE_NOTIF	= 199,
 };
 
 struct ieee80211_tim_ie {