diff options
author | Patrick McHardy <kaber@trash.net> | 2009-06-23 02:03:08 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-07-05 22:16:04 -0400 |
commit | 6ed106549d17474ca17a16057f4c0ed4eba5a7ca (patch) | |
tree | b98c09081509b3a9757339b6b66779e4126dfa29 /drivers/net/3c515.c | |
parent | 0e8635a8e1f2d4a9e1bfc6c3b21419a5921e674f (diff) |
net: use NETDEV_TX_OK instead of 0 in ndo_start_xmit() functions
This patch is the result of an automatic spatch transformation to convert
all ndo_start_xmit() return values of 0 to NETDEV_TX_OK.
Some occurences are missed by the automatic conversion, those will be
handled in a seperate patch.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/3c515.c')
-rw-r--r-- | drivers/net/3c515.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/3c515.c b/drivers/net/3c515.c index 3e00fa8ea65f..85ffd132bada 100644 --- a/drivers/net/3c515.c +++ b/drivers/net/3c515.c | |||
@@ -1054,7 +1054,7 @@ static int corkscrew_start_xmit(struct sk_buff *skb, | |||
1054 | netif_wake_queue(dev); | 1054 | netif_wake_queue(dev); |
1055 | } | 1055 | } |
1056 | dev->trans_start = jiffies; | 1056 | dev->trans_start = jiffies; |
1057 | return 0; | 1057 | return NETDEV_TX_OK; |
1058 | } | 1058 | } |
1059 | /* Put out the doubleword header... */ | 1059 | /* Put out the doubleword header... */ |
1060 | outl(skb->len, ioaddr + TX_FIFO); | 1060 | outl(skb->len, ioaddr + TX_FIFO); |
@@ -1117,7 +1117,7 @@ static int corkscrew_start_xmit(struct sk_buff *skb, | |||
1117 | outb(0x00, ioaddr + TxStatus); /* Pop the status stack. */ | 1117 | outb(0x00, ioaddr + TxStatus); /* Pop the status stack. */ |
1118 | } | 1118 | } |
1119 | } | 1119 | } |
1120 | return 0; | 1120 | return NETDEV_TX_OK; |
1121 | } | 1121 | } |
1122 | 1122 | ||
1123 | /* The interrupt handler does all of the Rx thread work and cleans up | 1123 | /* The interrupt handler does all of the Rx thread work and cleans up |