qcacmn: Add WMI event for cp stats

Extract more flag from WMI event TLV buffer.

Change-Id: I6623a81100b3191d796c156c93ae1ce4c3eaeb97
This commit is contained in:
aloksing
2020-07-01 10:25:59 +05:30
committed by snandini
parent d88847938b
commit b08f3994ef
5 changed files with 60 additions and 0 deletions

View File

@@ -3280,3 +3280,15 @@ QDF_STATUS wmi_unified_send_cp_stats_cmd(wmi_unified_t wmi_handle,
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS
wmi_unified_extract_cp_stats_more_pending(wmi_unified_t wmi_handle,
void *evt_buf, uint32_t *more_flag)
{
if (wmi_handle->ops->extract_cp_stats_more_pending)
return wmi_handle->ops->extract_cp_stats_more_pending(wmi_handle,
evt_buf,
more_flag);
return QDF_STATUS_E_FAILURE;
}