qcacmn: Add APIs to extract MGMT Rx REO params tlv

When MGMT Rx REO feature is enabled, FW will be sending MGMT Rx REO
parameters TLV as part of WMI_MGMT_RX_EVENTID for the frames that require
reordering. Add APIs to extract the same.

Change-Id: I57b132927cf413384d680b5778bfe6a2e2737adf
CRs-Fixed: 2960471
This commit is contained in:
Shiva Krishna Pittala
2021-05-16 18:20:26 +05:30
committed by Madan Koyyalamudi
parent a4d289451e
commit 361f45dd82
7 changed files with 132 additions and 2 deletions

View File

@@ -1967,6 +1967,17 @@ QDF_STATUS wmi_extract_mgmt_rx_fw_consumed(wmi_unified_t wmi_handle,
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS
wmi_extract_mgmt_rx_reo_params(wmi_unified_t wmi_handle, void *evt_buf,
struct mgmt_rx_reo_params *params)
{
if (wmi_handle->ops->extract_mgmt_rx_reo_params)
return wmi_handle->ops->extract_mgmt_rx_reo_params(
wmi_handle, evt_buf, params);
return QDF_STATUS_E_FAILURE;
}
#endif
QDF_STATUS