From: Rami Rosen Date: Sat, 4 Nov 2017 12:03:49 +0000 (+0200) Subject: net/kni: remove driver struct forward declaration X-Git-Tag: spdx-start~926 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=cbc3661f8b496f73ec20b8f5354fa6c299eaa53f;p=dpdk.git net/kni: remove driver struct forward declaration This patch removes the forward declaration of eth_kni_drv in rte_eth_kni.c; this forward declaration was made unnecessary by commit 050fe6e9ff970ff92d842912136be8f9f52e171f ("drivers/net: use ethdev allocation helper for vdev"), which removes the usage of eth_kni_drv in the eth_kni_create() method. Fixes: 050fe6e9ff97 ("drivers/net: use ethdev allocation helper for vdev") Cc: stable@dpdk.org Signed-off-by: Rami Rosen Acked-by: Ferruh Yigit --- diff --git a/drivers/net/kni/rte_eth_kni.c b/drivers/net/kni/rte_eth_kni.c index d68ff7a57f..e31b90920e 100644 --- a/drivers/net/kni/rte_eth_kni.c +++ b/drivers/net/kni/rte_eth_kni.c @@ -358,8 +358,6 @@ static const struct eth_dev_ops eth_kni_ops = { .stats_reset = eth_kni_stats_reset, }; -static struct rte_vdev_driver eth_kni_drv; - static struct rte_eth_dev * eth_kni_create(struct rte_vdev_device *vdev, struct eth_kni_args *args,