diff options
Diffstat (limited to 'drivers/net/epic100.c')
-rw-r--r-- | drivers/net/epic100.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/epic100.c b/drivers/net/epic100.c index b60e27dfcfa7..d6a7aa3142f9 100644 --- a/drivers/net/epic100.c +++ b/drivers/net/epic100.c | |||
@@ -970,7 +970,7 @@ static int epic_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
970 | unsigned long flags; | 970 | unsigned long flags; |
971 | 971 | ||
972 | if (skb_padto(skb, ETH_ZLEN)) | 972 | if (skb_padto(skb, ETH_ZLEN)) |
973 | return 0; | 973 | return NETDEV_TX_OK; |
974 | 974 | ||
975 | /* Caution: the write order is important here, set the field with the | 975 | /* Caution: the write order is important here, set the field with the |
976 | "ownership" bit last. */ | 976 | "ownership" bit last. */ |
@@ -1014,7 +1014,7 @@ static int epic_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1014 | dev->name, (int)skb->len, entry, ctrl_word, | 1014 | dev->name, (int)skb->len, entry, ctrl_word, |
1015 | (int)inl(dev->base_addr + TxSTAT)); | 1015 | (int)inl(dev->base_addr + TxSTAT)); |
1016 | 1016 | ||
1017 | return 0; | 1017 | return NETDEV_TX_OK; |
1018 | } | 1018 | } |
1019 | 1019 | ||
1020 | static void epic_tx_error(struct net_device *dev, struct epic_private *ep, | 1020 | static void epic_tx_error(struct net_device *dev, struct epic_private *ep, |