Browse Source

qcacmn: Populate TLV event ids for WIN specific WMI events

Extraction APIs for few WMI events were implemented, for which the
TLV event ids need to be populated.

Populate TLV event ids for the following events -
WMI_PDEV_CHANNEL_HOPPING_EVENTID
WMI_PDEV_TPC_EVENTID
WMI_WDS_PEER_EVENTID
WMI_PEER_STA_PS_STATECHG_EVENTID
WMI_INST_RSSI_STATS_EVENTID

Change-Id: I3defb120b9bd5a2fa3fdad1b84d201727c0b3f30
CRs-Fixed: 1115239
Sathish Kumar 8 years ago
parent
commit
e39aab9f74
1 changed files with 7 additions and 0 deletions
  1. 7 0
      wmi/src/wmi_unified_tlv.c

+ 7 - 0
wmi/src/wmi_unified_tlv.c

@@ -17279,6 +17279,13 @@ static void populate_tlv_events_id(uint32_t *event_ids)
 	event_ids[wmi_pdev_csa_switch_count_status_event_id] =
 				WMI_PDEV_CSA_SWITCH_COUNT_STATUS_EVENTID;
 	event_ids[wmi_reg_chan_list_cc_event_id] = WMI_REG_CHAN_LIST_CC_EVENTID;
+	event_ids[wmi_inst_rssi_stats_event_id] = WMI_INST_RSSI_STATS_EVENTID;
+	event_ids[wmi_pdev_tpc_config_event_id] = WMI_PDEV_TPC_CONFIG_EVENTID;
+	event_ids[wmi_peer_sta_ps_statechg_event_id] =
+					WMI_PEER_STA_PS_STATECHG_EVENTID;
+	event_ids[wmi_pdev_channel_hopping_event_id] =
+					WMI_PDEV_CHANNEL_HOPPING_EVENTID;
+	event_ids[wmi_wds_peer_event_id] = WMI_WDS_PEER_EVENTID;
 }
 
 #ifndef CONFIG_MCL