qcacmn: Add wmi interface changes to extract mgmt offload event
Add wmi interface changes to extract mgmt offload event params when WLAN_FEATURE_PKT_CAPTURE is enabled. Change-Id: Icacd65a99953fdc77b2c6823e9d26baaed3737c8 CRs-Fixed: 2619316
This commit is contained in:
@@ -3112,6 +3112,20 @@ wmi_unified_extract_roam_scan_stats(wmi_unified_t wmi, void *evt_buf,
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
|
||||
#ifdef WLAN_FEATURE_PKT_CAPTURE
|
||||
QDF_STATUS
|
||||
wmi_unified_extract_vdev_mgmt_offload_event(
|
||||
wmi_unified_t wmi, void *evt_buf,
|
||||
struct mgmt_offload_event_params *params)
|
||||
{
|
||||
if (wmi->ops->extract_vdev_mgmt_offload_event)
|
||||
return wmi->ops->extract_vdev_mgmt_offload_event(wmi, evt_buf,
|
||||
params);
|
||||
|
||||
return QDF_STATUS_E_FAILURE;
|
||||
}
|
||||
#endif /* WLAN_FEATURE_PKT_CAPTURE */
|
||||
|
||||
QDF_STATUS
|
||||
wmi_unified_extract_roam_result_stats(wmi_unified_t wmi, void *buf,
|
||||
struct wmi_roam_result *dst,
|
||||
|
Reference in New Issue
Block a user