qcacmn: Add extract APIs for qvit event

Add extarct API to get QVIT event data.

Change-Id: I7777946a34f176dabb96f98ab3062222bc02b202
CRs-Fixed: 2003898
This commit is contained in:
Kiran Venkatappa
2017-02-28 14:19:17 +05:30
committed by qcabuildsw
parent 2a93f6f77a
commit 3d5149868c
3 changed files with 20 additions and 0 deletions

View File

@@ -1345,6 +1345,10 @@ QDF_STATUS wmi_extract_pdev_utf_event(void *wmi_hdl,
uint8_t *evt_buf, uint8_t *evt_buf,
struct wmi_host_pdev_utf_event *param); struct wmi_host_pdev_utf_event *param);
QDF_STATUS wmi_extract_pdev_qvit_event(void *wmi_hdl,
uint8_t *evt_buf,
struct wmi_host_pdev_qvit_event *param);
QDF_STATUS wmi_extract_peer_delete_response_event(void *wmi_hdl, QDF_STATUS wmi_extract_peer_delete_response_event(void *wmi_hdl,
uint8_t *evt_buf, uint8_t *evt_buf,
struct wmi_host_peer_delete_response_event *param); struct wmi_host_peer_delete_response_event *param);

View File

@@ -7292,6 +7292,18 @@ struct wmi_host_pdev_utf_event {
uint32_t pdev_id; uint32_t pdev_id;
}; };
/**
* struct wmi_host_pdev_qvit_event - Host defined struct to hold qvit event data
* @data: Pointer to data
* @datalen: Data length
*
*/
struct wmi_host_pdev_qvit_event {
uint8_t *data;
uint16_t datalen;
uint32_t pdev_id;
};
/** /**
* struct wmi_host_peer_delete_response_event - Peer Delete response event param * struct wmi_host_peer_delete_response_event - Peer Delete response event param
* @vdev_id: vdev id * @vdev_id: vdev id

View File

@@ -1228,6 +1228,10 @@ QDF_STATUS (*extract_pdev_utf_event)(wmi_unified_t wmi_hdl,
uint8_t *evt_buf, uint8_t *evt_buf,
struct wmi_host_pdev_utf_event *param); struct wmi_host_pdev_utf_event *param);
QDF_STATUS (*extract_pdev_qvit_event)(wmi_unified_t wmi_hdl,
uint8_t *evt_buf,
struct wmi_host_pdev_qvit_event *param);
uint16_t (*wmi_set_htc_tx_tag)(wmi_unified_t wmi_handle, uint16_t (*wmi_set_htc_tx_tag)(wmi_unified_t wmi_handle,
wmi_buf_t buf, uint32_t cmd_id); wmi_buf_t buf, uint32_t cmd_id);