]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
wifi: ieee80211: fix UHR operation DBE vs. P-EDCA order
authorJohannes Berg <johannes.berg@intel.com>
Wed, 4 Mar 2026 13:41:48 +0000 (14:41 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Fri, 6 Mar 2026 09:46:26 +0000 (10:46 +0100)
Draft P802.11bn_D1.3 switched the order here to align with
the order of the fields. Adjust the code accordingly.

Link: https://patch.msgid.link/20260304144148.ce45942294e1.I22ab3f16e6376a19c3953cf81dd67105ea8e529d@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
include/linux/ieee80211-uhr.h

index 9729d23e47667df7eae09e5fc5bc934e2ec3ee17..d199f3ebdba0ae76007c403a1932fedc8c2bc139 100644 (file)
@@ -12,8 +12,8 @@
 
 #define IEEE80211_UHR_OPER_PARAMS_DPS_ENA              0x0001
 #define IEEE80211_UHR_OPER_PARAMS_NPCA_ENA             0x0002
-#define IEEE80211_UHR_OPER_PARAMS_DBE_ENA              0x0004
-#define IEEE80211_UHR_OPER_PARAMS_PEDCA_ENA            0x0008
+#define IEEE80211_UHR_OPER_PARAMS_PEDCA_ENA            0x0004
+#define IEEE80211_UHR_OPER_PARAMS_DBE_ENA              0x0008
 
 struct ieee80211_uhr_operation {
        __le16 params;