qcacmn: Add support for WMI_COEX_CONFIG command
Add support in WMI layer to configure coex config command for lithium based chipsets CRs-Fixed: 2037499 Change-Id: Ib83407524bd3b5cdad28f73a6ccc36d4a0271779
This commit is contained in:
@@ -6542,6 +6542,27 @@ QDF_STATUS wmi_unified_send_coex_ver_cfg_cmd(void *wmi_hdl,
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
/**
|
||||
* wmi_unified_send_coex_config_cmd() - send coex ver cfg command
|
||||
* @wmi_handle: wmi handle
|
||||
* @param: wmi coex cfg cmd params
|
||||
*
|
||||
* Send WMI_COEX_CFG_CMD parameters to fw.
|
||||
*
|
||||
* Return: QDF_STATUS_SUCCESS on success, QDF_STATUS_E_** on error
|
||||
*/
|
||||
QDF_STATUS wmi_unified_send_coex_config_cmd(void *wmi_hdl,
|
||||
struct coex_config_params *param)
|
||||
{
|
||||
wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
|
||||
|
||||
if (wmi_handle->ops->send_coex_config_cmd)
|
||||
return wmi_handle->ops->send_coex_config_cmd(wmi_handle,
|
||||
param);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
/**
|
||||
* wmi_extract_peer_delete_response_event() -
|
||||
* extract vdev id and peer mac addresse from peer delete response event
|
||||
|
Reference in New Issue
Block a user