qcacmn: Add support for new event WMI event

Add support for new WMI event
WMI_PDEV_RSSI_DBM_CONVERSION_PARAMS_INFO_EVENTID

Change-Id: I3c76863f3b356bd976eb2e31f3ec68fc86b467ab
CRs-Fixed: 3156381
This commit is contained in:
Shreedhar Parande
2022-03-22 17:41:21 +05:30
zatwierdzone przez Madan Koyyalamudi
rodzic 19970ea217
commit f812869581
3 zmienionych plików z 13 dodań i 0 usunięć

Wyświetl plik

@@ -4941,6 +4941,9 @@ typedef enum {
#endif
wmi_peer_rx_pn_response_event_id,
wmi_extract_pktlog_decode_info_eventid,
#ifdef QCA_RSSI_DB2DBM
wmi_pdev_rssi_dbm_conversion_params_info_eventid,
#endif
wmi_events_max,
} wmi_conv_event_id;

Wyświetl plik

@@ -1391,6 +1391,12 @@ QDF_STATUS (*extract_offchan_data_tx_compl_param)(wmi_unified_t wmi_handle,
QDF_STATUS (*extract_pdev_tpc_config_ev_param)(wmi_unified_t wmi_handle,
void *evt_buf, wmi_host_pdev_tpc_config_event *param);
#ifdef QCA_RSSI_DB2DBM
QDF_STATUS (*extract_pdev_rssi_dbm_conv_ev_param)(wmi_unified_t wmi_handle,
void *evt_buf,
struct rssi_db2dbm_param *param);
#endif
QDF_STATUS (*extract_peer_sta_kickout_ev)(wmi_unified_t wmi_handle,
void *evt_buf, wmi_host_peer_sta_kickout_event *ev);