Browse Source

qcacld-3.0: Define new 11be definitions

Add the required new definitions for 11BE.

Change-Id: I29bcca5d9622d98d7fd06f559269e5b5f3191bb0
CRs-Fixed: 2910604
Arun Kumar Khandavalli 4 years ago
parent
commit
ed63330aa9
2 changed files with 8 additions and 0 deletions
  1. 4 0
      core/hdd/inc/hdd_config.h
  2. 4 0
      core/mac/src/include/sir_params.h

+ 4 - 0
core/hdd/inc/hdd_config.h

@@ -100,6 +100,10 @@ enum hdd_dot11_mode {
 	eHDD_DOT11_MODE_11a,
 	eHDD_DOT11_MODE_11ax_ONLY,
 	eHDD_DOT11_MODE_11ax,
+#ifdef WLAN_FEATURE_11BE
+	eHDD_DOT11_MODE_11be,
+	eHDD_DOT11_MODE_11be_ONLY,
+#endif
 };
 
 /*

+ 4 - 0
core/mac/src/include/sir_params.h

@@ -84,6 +84,7 @@ typedef enum {
  * NAN - indicate NAN
  * RTT - indicate RTT
  * DOT11AX - indicate 11ax
+ * DOT11BE - indicate 11be
  * WOW - indicate WOW
  * WLAN_ROAM_SCAN_OFFLOAD - indicate Roam scan offload
  * WLAN_PERIODIC_TX_PTRN - indicate WLAN_PERIODIC_TX_PTRN
@@ -112,6 +113,9 @@ enum cap_bitmap {
 #endif
 	RTT = 12,
 	DOT11AX = 13,
+#ifdef WLAN_FEATURE_11BE
+	DOT11BE = 14,
+#endif
 	WOW = 22,
 	WLAN_ROAM_SCAN_OFFLOAD = 23,
 	WLAN_PERIODIC_TX_PTRN = 28,