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
This commit is contained in:
Sathish Kumar
2017-03-22 15:37:26 +05:30
committed by Sandeep Puligilla
parent cc5d70d6cd
commit f91f5a995c

View File

@@ -17279,6 +17279,13 @@ static void populate_tlv_events_id(uint32_t *event_ids)
event_ids[wmi_pdev_csa_switch_count_status_event_id] = event_ids[wmi_pdev_csa_switch_count_status_event_id] =
WMI_PDEV_CSA_SWITCH_COUNT_STATUS_EVENTID; 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_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 #ifndef CONFIG_MCL