From: Jie Liu <[email protected]> Remove duplicate function declarations from the sxe2 driver headers: - sxe2_drv_promisc_config, sxe2_drv_vsi_info_get and sxe2_drv_rxq_mapping_set in sxe2_cmd_chnl.h - sxe2_dev_pci_seg_unmap in sxe2_ethdev.h - sxe2_rx_pkts_scattered in sxe2_txrx_poll.h
Cc: [email protected] Signed-off-by: Jie Liu <[email protected]> --- drivers/net/sxe2/sxe2_cmd_chnl.h | 6 ------ drivers/net/sxe2/sxe2_ethdev.h | 2 -- drivers/net/sxe2/sxe2_txrx_poll.h | 2 -- 3 files changed, 10 deletions(-) diff --git a/drivers/net/sxe2/sxe2_cmd_chnl.h b/drivers/net/sxe2/sxe2_cmd_chnl.h index d63caad526..294ac15db4 100644 --- a/drivers/net/sxe2/sxe2_cmd_chnl.h +++ b/drivers/net/sxe2/sxe2_cmd_chnl.h @@ -65,8 +65,6 @@ int32_t sxe2_drv_ipsec_rxsa_delete(struct sxe2_adapter *adapter, int32_t sxe2_drv_ipsec_txsa_delete(struct sxe2_adapter *adapter, uint16_t sa_id); -int32_t sxe2_drv_promisc_config(struct sxe2_adapter *adapter, bool set); - int32_t sxe2_drv_udp_tunnel_add(struct sxe2_adapter *adapter, enum sxe2_udp_tunnel_protocol tunnel_proto, uint16_t udp_port); @@ -84,8 +82,6 @@ int32_t sxe2_drv_get_udp_tunnel_port(struct sxe2_adapter *adapter, int32_t sxe2_drv_vsi_info_get(struct sxe2_adapter *adapter, struct sxe2_vsi *vsi); -int32_t sxe2_drv_vsi_info_get(struct sxe2_adapter *adapter, struct sxe2_vsi *vsi); - int32_t sxe2_drv_mac_link_status_get(struct sxe2_adapter *adapter); int32_t sxe2_drv_get_mac_stats(struct sxe2_adapter *adapter); @@ -110,8 +106,6 @@ int32_t sxe2_drv_mapping_reset(struct rte_eth_dev *eth_dev); int32_t sxe2_drv_mapping_stats_info_clear(struct rte_eth_dev *eth_dev); -int32_t sxe2_drv_rxq_mapping_set(struct rte_eth_dev *eth_dev, uint16_t queue_id, uint8_t pool_idx); - int32_t sxe2_drv_allmulti_config(struct sxe2_adapter *adapter, bool set); int32_t sxe2_drv_uc_config(struct sxe2_adapter *adapter, struct rte_ether_addr *addr, bool add); diff --git a/drivers/net/sxe2/sxe2_ethdev.h b/drivers/net/sxe2/sxe2_ethdev.h index 158198d74b..1409be74d3 100644 --- a/drivers/net/sxe2/sxe2_ethdev.h +++ b/drivers/net/sxe2/sxe2_ethdev.h @@ -385,8 +385,6 @@ void sxe2_dev_pci_seg_unmap(struct sxe2_adapter *adapter, uint32_t res_type); int32_t sxe2_dev_pci_map_init(struct rte_eth_dev *dev); -void sxe2_dev_pci_seg_unmap(struct sxe2_adapter *adapter, uint32_t res_type); - int32_t sxe2_udp_tunnel_port_del_common(struct sxe2_adapter *ad, enum sxe2_udp_tunnel_protocol tunnel_proto, uint16_t udp_port); diff --git a/drivers/net/sxe2/sxe2_txrx_poll.h b/drivers/net/sxe2/sxe2_txrx_poll.h index 708e3839d7..bfa099c097 100644 --- a/drivers/net/sxe2/sxe2_txrx_poll.h +++ b/drivers/net/sxe2/sxe2_txrx_poll.h @@ -13,8 +13,6 @@ uint16_t sxe2_tx_pkts_simple(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t uint16_t sxe2_rx_pkts_scattered(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts); -uint16_t sxe2_rx_pkts_scattered(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts); - uint16_t sxe2_rx_pkts_scattered_split(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts); #endif /* SXE2_TXRX_POLL_H */ -- 2.52.0

