From f91f5a995c5cdba373f91528b76e27d38f82ecfd Mon Sep 17 00:00:00 2001 From: Sathish Kumar Date: Wed, 22 Mar 2017 15:37:26 +0530 Subject: [PATCH] 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 --- wmi_unified_tlv.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wmi_unified_tlv.c b/wmi_unified_tlv.c index 13e9a4b677..abdfceec6d 100644 --- a/wmi_unified_tlv.c +++ b/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