qcacmn: Add support for 11k offload related WMI commands
Add WMI TLV functions for 11k offload command and neighbor report request invoke command. Change-Id: If37cace93d4f719eed6abfabcd878879d804161e CRs-Fixed: 2162030
This commit is contained in:

committed by
snandini

parent
a7b454df56
commit
7f05777520
@@ -7351,3 +7351,27 @@ QDF_STATUS wmi_unified_extract_obss_detection_info(void *wmi_hdl,
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
QDF_STATUS wmi_unified_offload_11k_cmd(void *wmi_hdl,
|
||||
struct wmi_11k_offload_params *params)
|
||||
{
|
||||
wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
|
||||
|
||||
if (wmi_handle->ops->send_offload_11k_cmd)
|
||||
return wmi_handle->ops->send_offload_11k_cmd(
|
||||
wmi_handle, params);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
QDF_STATUS wmi_unified_invoke_neighbor_report_cmd(void *wmi_hdl,
|
||||
struct wmi_invoke_neighbor_report_params *params)
|
||||
{
|
||||
wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
|
||||
|
||||
if (wmi_handle->ops->send_invoke_neighbor_report_cmd)
|
||||
return wmi_handle->ops->send_invoke_neighbor_report_cmd(
|
||||
wmi_handle, params);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user