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

@@ -2767,6 +2767,20 @@ wmi_extract_mgmt_rx_fw_consumed(wmi_unified_t wmi_handle, void *evt_buf,
QDF_STATUS
wmi_extract_mgmt_rx_reo_params(wmi_unified_t wmi_handle, void *evt_buf,
struct mgmt_rx_reo_params *params);
/**
* wmi_unified_mgmt_rx_reo_filter_config_cmd() - Send MGMT Rx REO filter
* configuration command
* @wmi_handle: wmi handle
* @pdev_id: pdev ID of the radio
* @filter: Pointer to MGMT Rx REO filter
*
* Return: QDF_STATUS_SUCCESS for success or error code
*/
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);
#endif
/**