From: Santiago Leon Date: Fri, 3 Sep 2010 18:29:08 +0000 (+0000) Subject: ibmveth: Remove redundant function prototypes X-Git-Tag: firefly_0821_release~7613^2~3670^2~553 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e295fe83755213fb5991be577485525a7453213c;p=firefly-linux-kernel-4.4.55.git ibmveth: Remove redundant function prototypes These functions appear before their use, so we can remove the redundant prototypes. Signed-off-by: Anton Blanchard Signed-off-by: Santiago Leon Signed-off-by: David S. Miller --- diff --git a/drivers/net/ibmveth.c b/drivers/net/ibmveth.c index 5c7eb06e5bc7..5a4fca162e00 100644 --- a/drivers/net/ibmveth.c +++ b/drivers/net/ibmveth.c @@ -79,16 +79,10 @@ #define ibmveth_assert(expr) #endif -static int ibmveth_open(struct net_device *dev); -static int ibmveth_close(struct net_device *dev); -static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd); -static int ibmveth_poll(struct napi_struct *napi, int budget); -static int ibmveth_start_xmit(struct sk_buff *skb, struct net_device *dev); -static void ibmveth_set_multicast_list(struct net_device *dev); -static int ibmveth_change_mtu(struct net_device *dev, int new_mtu); static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance); static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter); static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev); + static struct kobj_type ktype_veth_pool;