qcacmn: Add WMI layer functionality for MGMT Rx REO filter config command

WMI_MGMT_RX_REO_FILTER_CONFIGURATION_CMD is used to the configure re-order
criterion for incoming management frames. Add WMI layer support for the
same command.

Change-Id: If1498fd4fbccd86e7d54d9eac268868b36523d06
CRs-Fixed: 2960472
This commit is contained in:
Shiva Krishna Pittala
2021-05-17 15:49:48 +05:30
committed by Madan Koyyalamudi
parent 361f45dd82
commit 57543be336
5 changed files with 99 additions and 0 deletions

View File

@@ -1978,6 +1978,18 @@ wmi_extract_mgmt_rx_reo_params(wmi_unified_t wmi_handle, void *evt_buf,
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS wmi_unified_mgmt_rx_reo_filter_config_cmd(
wmi_unified_t wmi_handle,
uint8_t pdev_id,
struct mgmt_rx_reo_filter *filter)
{
if (wmi_handle->ops->send_mgmt_rx_reo_filter_config_cmd)
return wmi_handle->ops->send_mgmt_rx_reo_filter_config_cmd(
wmi_handle, pdev_id, filter);
return QDF_STATUS_E_FAILURE;
}
#endif
QDF_STATUS