qcacmn: Added support to get the status of mgmt rx reo sim feature

Add support to get the status mgmt rx reo sim feature

cfg80211tool wifiX g_mgmt_rx_reo_simulation

Change-Id: Ia60cd25c0b044484b3e6a44ebc536ac1cf0c3804
CRs-Fixed: 3154130
This commit is contained in:
Shubham Pawar
2022-03-18 11:52:05 +05:30
committed by Madan Koyyalamudi
부모 2f947e661f
커밋 ee9cd039b3
2개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@@ -50,6 +50,15 @@ ucfg_wlan_mgmt_rx_reo_sim_start(void);
QDF_STATUS
ucfg_wlan_mgmt_rx_reo_sim_stop(void);
/**
* ucfg_wlan_mgmt_rx_reo_is_simulation_in_progress() - API to check whether
* simulation is in progress
*
* Return: true if simulation is in progress, else false
*/
bool
ucfg_wlan_mgmt_rx_reo_is_simulation_in_progress(void);
#else
/**
* ucfg_wlan_mgmt_rx_reo_sim_start() - Helper API to start mgmt rx

파일 보기

@@ -63,3 +63,11 @@ ucfg_wlan_mgmt_rx_reo_sim_stop(void)
}
qdf_export_symbol(ucfg_wlan_mgmt_rx_reo_sim_stop);
bool
ucfg_wlan_mgmt_rx_reo_is_simulation_in_progress(void)
{
return wlan_mgmt_rx_reo_is_simulation_in_progress();
}
qdf_export_symbol(ucfg_wlan_mgmt_rx_reo_is_simulation_in_progress);