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:

committed by
Madan Koyyalamudi

parent
a4d289451e
commit
361f45dd82
@@ -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
|
||||
|
Reference in New Issue
Block a user