diff options
author | Santiago Leon <santil@linux.vnet.ibm.com> | 2010-09-03 14:29:08 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-06 21:21:51 -0400 |
commit | e295fe83755213fb5991be577485525a7453213c (patch) | |
tree | 5000be03bb0472c90b05ed3722407a75275c53a0 /drivers/net/ibmveth.c | |
parent | 003212cc599cdc006de486e28c1f6b327bcb9808 (diff) |
ibmveth: Remove redundant function prototypes
These functions appear before their use, so we can remove the redundant
prototypes.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Santiago Leon <santil@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ibmveth.c')
-rw-r--r-- | drivers/net/ibmveth.c | 8 |
1 files changed, 1 insertions, 7 deletions
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 @@ | |||
79 | #define ibmveth_assert(expr) | 79 | #define ibmveth_assert(expr) |
80 | #endif | 80 | #endif |
81 | 81 | ||
82 | static int ibmveth_open(struct net_device *dev); | ||
83 | static int ibmveth_close(struct net_device *dev); | ||
84 | static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd); | ||
85 | static int ibmveth_poll(struct napi_struct *napi, int budget); | ||
86 | static int ibmveth_start_xmit(struct sk_buff *skb, struct net_device *dev); | ||
87 | static void ibmveth_set_multicast_list(struct net_device *dev); | ||
88 | static int ibmveth_change_mtu(struct net_device *dev, int new_mtu); | ||
89 | static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance); | 82 | static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance); |
90 | static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter); | 83 | static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter); |
91 | static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev); | 84 | static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev); |
85 | |||
92 | static struct kobj_type ktype_veth_pool; | 86 | static struct kobj_type ktype_veth_pool; |
93 | 87 | ||
94 | 88 | ||