qcacld-3.0: Add WMI EVENT handler for offloaded mgmt data

Register event handler for WMI_VDEV_MGMT_OFFLOAD_DATA_EVENTID
to handle offloaded management data.

Change-Id: I340d79b08f8453425092f4582059f184e0dfb625
CRs-Fixed: 2619319
This commit is contained in:
Dundi Raviteja
2020-02-03 18:05:21 +05:30
committed by nshrivas
parent adb5939c5a
commit 9465ea0c01
2 changed files with 139 additions and 4 deletions

View File

@@ -25,8 +25,12 @@
#ifndef _TARGET_IF_PKT_CAPTURE_H_
#define _TARGET_IF_PKT_CAPTURE_H_
#include <qdf_types.h>
#include "wlan_pkt_capture_public_structs.h"
#include <wlan_pkt_capture_main.h>
#include <wlan_pkt_capture_ucfg_api.h>
#include <wlan_pkt_capture_mgmt_txrx.h>
#include <wlan_pkt_capture_public_structs.h>
#include <target_if.h>
#include <linux/ieee80211.h>
/**
* target_if_set_packet_capture_mode() - set packet capture mode
@@ -39,4 +43,15 @@
QDF_STATUS target_if_set_packet_capture_mode(struct wlan_objmgr_psoc *psoc,
uint8_t vdev_id,
enum pkt_capture_mode mode);
/**
* target_if_register_mgmt_data_offload_event() - Register offload event handler
* @psoc: wlan psoc object
*
* Register mgmt data offload event handler
*
* Return: QDF_STATUS
*/
QDF_STATUS
target_if_register_mgmt_data_offload_event(struct wlan_objmgr_psoc *psoc);
#endif /* _TARGET_IF_PKT_CAPTURE_H_ */