Sfoglia il codice sorgente

qcacmn: Remove unused ATF functions

Remove the ATF API that is not used anymore

Change-Id: Ib133689c773b1ce4244230643b397509fc147a23
CRs-Fixed: 2275107
Jeffin Mammen 6 anni fa
parent
commit
a69c898fed

+ 0 - 2
umac/global_umac_dispatcher/lmac_if/inc/wlan_lmac_if_def.h

@@ -863,7 +863,6 @@ struct wlan_lmac_if_p2p_rx_ops {
  * @atf_set_sched:                     Set ATF schedule policy
  * @atf_set_fmcap:                     Set firmware capability for ATF
  * @atf_set_obss_scale:                Set ATF obss scale
- * @atf_set_mode:                      Set ATF mode
  * @atf_set_msdu_desc:                 Set msdu desc
  * @atf_set_max_vdevs:                 Set maximum vdevs number
  * @atf_set_peers:                     Set peers number
@@ -906,7 +905,6 @@ struct wlan_lmac_if_atf_rx_ops {
 	void (*atf_set_fmcap)(struct wlan_objmgr_psoc *psoc, uint32_t value);
 	void (*atf_set_obss_scale)(struct wlan_objmgr_pdev *pdev,
 				   uint32_t value);
-	void (*atf_set_mode)(struct wlan_objmgr_psoc *psoc, uint8_t value);
 	void (*atf_set_msdu_desc)(struct wlan_objmgr_psoc *psoc,
 				  uint32_t value);
 	void (*atf_set_max_vdevs)(struct wlan_objmgr_psoc *psoc,

+ 0 - 1
umac/global_umac_dispatcher/lmac_if/src/wlan_lmac_if.c

@@ -134,7 +134,6 @@ wlan_lmac_if_atf_rx_ops_register(struct wlan_lmac_if_rx_ops *rx_ops)
 	atf_rx_ops->atf_set_sched = tgt_atf_set_sched;
 	atf_rx_ops->atf_set_fmcap = tgt_atf_set_fmcap;
 	atf_rx_ops->atf_set_obss_scale = tgt_atf_set_obss_scale;
-	atf_rx_ops->atf_set_mode = tgt_atf_set_mode;
 	atf_rx_ops->atf_set_msdu_desc = tgt_atf_set_msdu_desc;
 	atf_rx_ops->atf_set_max_vdevs = tgt_atf_set_max_vdevs;
 	atf_rx_ops->atf_set_peers = tgt_atf_set_peers;