diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-08-31 15:50:54 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-09-01 04:13:50 -0400 |
commit | 27a1de95a1461ec0589005c293d6ac23a46cb72d (patch) | |
tree | 167e0c9aa3f2b179f4a38a7df734739e0b9cda6d /drivers/net/3c509.c | |
parent | ad096463f7ff809389454ea4219058a36564d55e (diff) |
3com: convert drivers to netdev_tx_t
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/3c509.c')
-rw-r--r-- | drivers/net/3c509.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/3c509.c b/drivers/net/3c509.c index d2515d840c00..3b00a4e927aa 100644 --- a/drivers/net/3c509.c +++ b/drivers/net/3c509.c | |||
@@ -191,7 +191,7 @@ static void el3_common_remove(struct net_device *dev); | |||
191 | static ushort id_read_eeprom(int index); | 191 | static ushort id_read_eeprom(int index); |
192 | static ushort read_eeprom(int ioaddr, int index); | 192 | static ushort read_eeprom(int ioaddr, int index); |
193 | static int el3_open(struct net_device *dev); | 193 | static int el3_open(struct net_device *dev); |
194 | static int el3_start_xmit(struct sk_buff *skb, struct net_device *dev); | 194 | static netdev_tx_t el3_start_xmit(struct sk_buff *skb, struct net_device *dev); |
195 | static irqreturn_t el3_interrupt(int irq, void *dev_id); | 195 | static irqreturn_t el3_interrupt(int irq, void *dev_id); |
196 | static void update_stats(struct net_device *dev); | 196 | static void update_stats(struct net_device *dev); |
197 | static struct net_device_stats *el3_get_stats(struct net_device *dev); | 197 | static struct net_device_stats *el3_get_stats(struct net_device *dev); |
@@ -816,7 +816,7 @@ el3_tx_timeout (struct net_device *dev) | |||
816 | } | 816 | } |
817 | 817 | ||
818 | 818 | ||
819 | static int | 819 | static netdev_tx_t |
820 | el3_start_xmit(struct sk_buff *skb, struct net_device *dev) | 820 | el3_start_xmit(struct sk_buff *skb, struct net_device *dev) |
821 | { | 821 | { |
822 | struct el3_private *lp = netdev_priv(dev); | 822 | struct el3_private *lp = netdev_priv(dev); |