From: Ivan Ilchenko Date: Sun, 1 Sep 2019 14:36:43 +0000 (+0100) Subject: net/atlantic: remove double function declaration X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=5fdd61136babc3ec4a371ed09372c551da3e79b3;p=dpdk.git net/atlantic: remove double function declaration atl_dev_info_get() is declared twice in atl_ethdev.c. Delete one of these declarations. Fixes: bb42aa9ffe4e ("net/atlantic: configure device start/stop") Cc: stable@dpdk.org Signed-off-by: Ivan Ilchenko Signed-off-by: Andrew Rybchenko Acked-by: Igor Russkikh --- diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl_ethdev.c index 3c1b349dfa..4a99699ad5 100644 --- a/drivers/net/atlantic/atl_ethdev.c +++ b/drivers/net/atlantic/atl_ethdev.c @@ -45,9 +45,6 @@ static void atl_dev_stats_reset(struct rte_eth_dev *dev); static int atl_fw_version_get(struct rte_eth_dev *dev, char *fw_version, size_t fw_size); -static void atl_dev_info_get(struct rte_eth_dev *dev, - struct rte_eth_dev_info *dev_info); - static const uint32_t *atl_dev_supported_ptypes_get(struct rte_eth_dev *dev); static int atl_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);