qcacmn: Add obss detection info extract handler

Add hander to extract obss detection info received
from firmware.

Change-Id: I5fde304915a97d37d6cbe58e7a315e91fbac61b6
CRs-Fixed: 2170184
This commit is contained in:
Arif Hussain
2018-01-12 13:15:04 -08:00
committed by snandini
parent 2cfde1d752
commit f9f26b5606
3 changed files with 49 additions and 0 deletions

View File

@@ -1911,4 +1911,22 @@ QDF_STATUS wmi_unified_send_btm_config(void *wmi_hdl,
QDF_STATUS wmi_unified_send_obss_detection_cfg_cmd(void *wmi_hdl,
struct wmi_obss_detection_cfg_param *cfg);
/**
* wmi_unified_extract_obss_detection_info() - WMI function to extract obss
* detection info from FW.
* @wmi_hdl: wmi handle
* @data: event data from firmware
* @info: Pointer to hold obss detection info
*
* This function is used to extract obss info from firmware.
*
* Return: QDF_STATUS
*/
QDF_STATUS wmi_unified_extract_obss_detection_info(void *wmi_hdl,
uint8_t *data,
struct wmi_obss_detect_info
*info);
#endif /* _WMI_UNIFIED_API_H_ */