Browse Source

qcacmn: Add support for peer create confirm handler

Firmware sends peer create confirmation event with
success or failure status.

Add changes to handle the peer create confirmation event.

Change-Id: I8d80cfe3945410e4f49d27df7c1903eabb7d6827
CRs-Fixed: 2747877
Pragaspathi Thilagaraj 4 years ago
parent
commit
896d2a4a9d
2 changed files with 3 additions and 0 deletions
  1. 1 0
      wmi/inc/wmi_unified_param.h
  2. 2 0
      wmi/src/wmi_unified_tlv.c

+ 1 - 0
wmi/inc/wmi_unified_param.h

@@ -4682,6 +4682,7 @@ typedef enum {
 	wmi_roam_cap_report_event_id,
 	wmi_roam_cap_report_event_id,
 	wmi_vdev_bcn_latency_event_id,
 	wmi_vdev_bcn_latency_event_id,
 	wmi_vdev_disconnect_event_id,
 	wmi_vdev_disconnect_event_id,
+	wmi_peer_create_conf_event_id,
 	wmi_events_max,
 	wmi_events_max,
 } wmi_conv_event_id;
 } wmi_conv_event_id;
 
 

+ 2 - 0
wmi/src/wmi_unified_tlv.c

@@ -15041,6 +15041,8 @@ event_ids[wmi_roam_scan_chan_list_id] =
 			WMI_VDEV_BCN_LATENCY_EVENTID;
 			WMI_VDEV_BCN_LATENCY_EVENTID;
 	event_ids[wmi_vdev_disconnect_event_id] =
 	event_ids[wmi_vdev_disconnect_event_id] =
 			WMI_VDEV_DISCONNECT_EVENTID;
 			WMI_VDEV_DISCONNECT_EVENTID;
+	event_ids[wmi_peer_create_conf_event_id] =
+			WMI_PEER_CREATE_CONF_EVENTID;
 }
 }
 
 
 /**
 /**