diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-08-31 15:50:58 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-09-01 04:14:07 -0400 |
commit | 61357325f377889a1daffa14962d705dc814dd0e (patch) | |
tree | 7b436f1097abbc5681de6d1e5901f62963b42220 /drivers/net/atlx | |
parent | d0cf9c0dadcdc89a755bcb301cfc9c796eb28ccf (diff) |
netdev: convert bulk of drivers to netdev_tx_t
In a couple of cases collapse some extra code like:
int retval = NETDEV_TX_OK;
...
return retval;
into
return NETDEV_TX_OK;
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/atlx')
-rw-r--r-- | drivers/net/atlx/atl1.c | 3 | ||||
-rw-r--r-- | drivers/net/atlx/atl2.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/atlx/atl1.c b/drivers/net/atlx/atl1.c index 8bca12f71390..00569dc1313c 100644 --- a/drivers/net/atlx/atl1.c +++ b/drivers/net/atlx/atl1.c | |||
@@ -2349,7 +2349,8 @@ static void atl1_tx_queue(struct atl1_adapter *adapter, u16 count, | |||
2349 | atomic_set(&tpd_ring->next_to_use, next_to_use); | 2349 | atomic_set(&tpd_ring->next_to_use, next_to_use); |
2350 | } | 2350 | } |
2351 | 2351 | ||
2352 | static int atl1_xmit_frame(struct sk_buff *skb, struct net_device *netdev) | 2352 | static netdev_tx_t atl1_xmit_frame(struct sk_buff *skb, |
2353 | struct net_device *netdev) | ||
2353 | { | 2354 | { |
2354 | struct atl1_adapter *adapter = netdev_priv(netdev); | 2355 | struct atl1_adapter *adapter = netdev_priv(netdev); |
2355 | struct atl1_tpd_ring *tpd_ring = &adapter->tpd_ring; | 2356 | struct atl1_tpd_ring *tpd_ring = &adapter->tpd_ring; |
diff --git a/drivers/net/atlx/atl2.c b/drivers/net/atlx/atl2.c index 204db961029e..d0bcb572d51e 100644 --- a/drivers/net/atlx/atl2.c +++ b/drivers/net/atlx/atl2.c | |||
@@ -821,7 +821,8 @@ static inline int TxdFreeBytes(struct atl2_adapter *adapter) | |||
821 | (int) (txd_read_ptr - adapter->txd_write_ptr - 1); | 821 | (int) (txd_read_ptr - adapter->txd_write_ptr - 1); |
822 | } | 822 | } |
823 | 823 | ||
824 | static int atl2_xmit_frame(struct sk_buff *skb, struct net_device *netdev) | 824 | static netdev_tx_t atl2_xmit_frame(struct sk_buff *skb, |
825 | struct net_device *netdev) | ||
825 | { | 826 | { |
826 | struct atl2_adapter *adapter = netdev_priv(netdev); | 827 | struct atl2_adapter *adapter = netdev_priv(netdev); |
827 | struct tx_pkt_header *txph; | 828 | struct tx_pkt_header *txph; |