Skip to content

Commit f0f2551

Browse files
YueHaibingdavem330
authored andcommitted
net: wiznet: fix return type of ndo_start_xmit function
The method ndo_start_xmit() is defined as returning an 'netdev_tx_t', which is a typedef for an enum type, so make sure the implementation in this driver has returns 'netdev_tx_t' value, and change the function return type to netdev_tx_t. Found by coccinelle. Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 28d304e commit f0f2551

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drivers/net/ethernet/wiznet/w5100.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ static void w5100_tx_work(struct work_struct *work)
835835
w5100_tx_skb(priv->ndev, skb);
836836
}
837837

838-
static int w5100_start_tx(struct sk_buff *skb, struct net_device *ndev)
838+
static netdev_tx_t w5100_start_tx(struct sk_buff *skb, struct net_device *ndev)
839839
{
840840
struct w5100_priv *priv = netdev_priv(ndev);
841841

drivers/net/ethernet/wiznet/w5300.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ static void w5300_tx_timeout(struct net_device *ndev)
365365
netif_wake_queue(ndev);
366366
}
367367

368-
static int w5300_start_tx(struct sk_buff *skb, struct net_device *ndev)
368+
static netdev_tx_t w5300_start_tx(struct sk_buff *skb, struct net_device *ndev)
369369
{
370370
struct w5300_priv *priv = netdev_priv(ndev);
371371

0 commit comments

Comments
 (0)