qcacmn: Extract meta data from dbr event
Extract meta data from the dbr wmi event. CRs-Fixed: 2219818 Change-Id: Ib19588775060e75017e9777206132a0efeec6223
This commit is contained in:

committed by
nshrivas

parent
a536eac8cc
commit
9265122fcf
@@ -6907,6 +6907,21 @@ QDF_STATUS wmi_extract_dbr_buf_release_entry(
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
QDF_STATUS wmi_extract_dbr_buf_metadata(
|
||||
void *wmi_hdl,
|
||||
uint8_t *evt_buf, uint8_t idx,
|
||||
struct direct_buf_rx_metadata *param)
|
||||
{
|
||||
wmi_unified_t wmi_handle = (wmi_unified_t)wmi_hdl;
|
||||
|
||||
if (wmi_handle->ops->extract_dbr_buf_metadata)
|
||||
return wmi_handle->ops->extract_dbr_buf_metadata(
|
||||
wmi_handle,
|
||||
evt_buf, idx, param);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
/**
|
||||
* wmi_extract_pdev_utf_event() -
|
||||
* extract UTF data from pdev utf event
|
||||
|
Reference in New Issue
Block a user