qcacmn: Add support for DFS_PHYERR_OFFLOAD commands
Add support for below wmi commands WMI_PDEV_DFS_PHYERR_OFFLOAD_ENABLE_CMDID WMI_PDEV_DFS_PHYERR_OFFLOAD_DISABLE_CMDID Change-Id: I5cfcfac428ce076d42f186752c967f67ffa1879f CRs-Fixed: 2017481
This commit is contained in:

committed by
Sandeep Puligilla

parent
df0211abda
commit
f00be1dbc4
@@ -6404,3 +6404,29 @@ QDF_STATUS wmi_extract_peer_delete_response_event(
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
QDF_STATUS
|
||||
wmi_unified_dfs_phyerr_offload_en_cmd(void *wmi_hdl,
|
||||
uint32_t pdev_id)
|
||||
{
|
||||
wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
|
||||
|
||||
if (wmi_handle->ops->send_dfs_phyerr_offload_en_cmd)
|
||||
return wmi_handle->ops->send_dfs_phyerr_offload_en_cmd(
|
||||
wmi_handle, pdev_id);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
QDF_STATUS
|
||||
wmi_unified_dfs_phyerr_offload_dis_cmd(void *wmi_hdl,
|
||||
uint32_t pdev_id)
|
||||
{
|
||||
wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
|
||||
|
||||
if (wmi_handle->ops->send_dfs_phyerr_offload_dis_cmd)
|
||||
return wmi_handle->ops->send_dfs_phyerr_offload_dis_cmd(
|
||||
wmi_handle, pdev_id);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user