qcacmn: Fix for compilation error on MCC WHUNT

Fix for compilation error on MCC WHUNT with MLO
enabled

Change-Id: I684c8197753adbcf0f9ef519bd8e37596a48dd01
This commit is contained in:
Chaithanya Garrepalli
2021-11-30 16:36:47 +05:30
committed by Madan Koyyalamudi
parent aaf4382daf
commit b801ec4b65
2 changed files with 3 additions and 3 deletions

View File

@@ -569,9 +569,9 @@ enum WDI_EVENT {
WDI_EVENT_HOST_SW_EVENT, WDI_EVENT_HOST_SW_EVENT,
#ifdef QCA_WIFI_QCN9224 #ifdef QCA_WIFI_QCN9224
WDI_EVENT_HYBRID_TX, WDI_EVENT_HYBRID_TX,
#endif
#ifdef WLAN_FEATURE_11BE_MLO #ifdef WLAN_FEATURE_11BE_MLO
WDI_EVENT_MLO_TSTMP, WDI_EVENT_MLO_TSTMP,
#endif
#endif #endif
/* End of new event items */ /* End of new event items */
WDI_EVENT_LAST WDI_EVENT_LAST

View File

@@ -2522,7 +2522,7 @@ struct dp_soc_srngs_state {
TAILQ_ENTRY(dp_soc_srngs_state) list_elem; TAILQ_ENTRY(dp_soc_srngs_state) list_elem;
}; };
#if defined(QCA_WIFI_QCN9224) && defined(WLAN_FEATURE_11BE_MLO) #ifdef WLAN_FEATURE_11BE_MLO
/* struct dp_mlo_sync_timestamp - PDEV level data structure for storing /* struct dp_mlo_sync_timestamp - PDEV level data structure for storing
* MLO timestamp received via HTT msg. * MLO timestamp received via HTT msg.
* msg_type: This would be set to HTT_T2H_MSG_TYPE_MLO_TIMESTAMP_OFFSET_IND * msg_type: This would be set to HTT_T2H_MSG_TYPE_MLO_TIMESTAMP_OFFSET_IND
@@ -2801,7 +2801,7 @@ struct dp_pdev {
#ifdef WIFI_MONITOR_SUPPORT #ifdef WIFI_MONITOR_SUPPORT
struct dp_mon_pdev *monitor_pdev; struct dp_mon_pdev *monitor_pdev;
#endif #endif
#if defined(QCA_WIFI_QCN9224) && defined(WLAN_FEATURE_11BE_MLO) #ifdef WLAN_FEATURE_11BE_MLO
struct dp_mlo_sync_timestamp timestamp; struct dp_mlo_sync_timestamp timestamp;
#endif #endif
}; };