diff --git a/dp/cmn_dp_api/dp_ratetable.h b/dp/cmn_dp_api/dp_ratetable.h index fcb6b3148f..4c7eccd7ce 100644 --- a/dp/cmn_dp_api/dp_ratetable.h +++ b/dp/cmn_dp_api/dp_ratetable.h @@ -22,22 +22,6 @@ #define CMN_DP_ASSERT(__bool) -/* - *Band Width Types - */ -enum CMN_BW_TYPES { - CMN_BW_20MHZ, - CMN_BW_40MHZ, - CMN_BW_80MHZ, - CMN_BW_160MHZ, - CMN_BW_80_80MHZ, -#ifdef WLAN_FEATURE_11BE - CMN_BW_320MHZ, -#endif - CMN_BW_CNT, - CMN_BW_IDLE = 0xFF, /*default BW state */ -}; - /* * Modes Types */ diff --git a/dp/inc/cdp_txrx_mon_struct.h b/dp/inc/cdp_txrx_mon_struct.h index f8d7d6c888..83f5797ddb 100644 --- a/dp/inc/cdp_txrx_mon_struct.h +++ b/dp/inc/cdp_txrx_mon_struct.h @@ -95,11 +95,20 @@ enum { CDP_RX_TYPE_MU_OFDMA_MIMO, }; -enum { - CDP_FULL_RX_BW_20 = 0, - CDP_FULL_RX_BW_40, - CDP_FULL_RX_BW_80, - CDP_FULL_RX_BW_160, +/* + *Band Width Types + */ +enum CMN_BW_TYPES { + CMN_BW_20MHZ, + CMN_BW_40MHZ, + CMN_BW_80MHZ, + CMN_BW_160MHZ, + CMN_BW_80_80MHZ, +#ifdef WLAN_FEATURE_11BE + CMN_BW_320MHZ, +#endif + CMN_BW_CNT, + CMN_BW_IDLE = 0xFF, /*default BW state */ }; struct cdp_mon_status { diff --git a/dp/inc/cdp_txrx_stats_struct.h b/dp/inc/cdp_txrx_stats_struct.h index f3cdafc747..6fa9039f9f 100644 --- a/dp/inc/cdp_txrx_stats_struct.h +++ b/dp/inc/cdp_txrx_stats_struct.h @@ -46,12 +46,14 @@ /* 1 additional MCS is for invalid values */ #ifdef WLAN_FEATURE_11BE #define MAX_MCS (16 + 1) +#define MAX_MCS_11BE 16 #else #define MAX_MCS (14 + 1) #endif #define MAX_MCS_11A 8 #define MAX_MCS_11B 7 #define MAX_MCS_11AC 12 +#define MAX_MCS_11AX 14 /* 1 additional GI is for invalid values */ #define MAX_GI (4 + 1) #define SS_COUNT 8