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>
This commit is contained in:

committed by
David S. Miller

parent
28d304efb8
commit
f0f25516e3
@@ -365,7 +365,7 @@ static void w5300_tx_timeout(struct net_device *ndev)
|
||||
netif_wake_queue(ndev);
|
||||
}
|
||||
|
||||
static int w5300_start_tx(struct sk_buff *skb, struct net_device *ndev)
|
||||
static netdev_tx_t w5300_start_tx(struct sk_buff *skb, struct net_device *ndev)
|
||||
{
|
||||
struct w5300_priv *priv = netdev_priv(ndev);
|
||||
|
||||
|
Reference in New Issue
Block a user