aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/cortina
diff options
context:
space:
mode:
authorYunjian Wang <wangyunjian@huawei.com>2020-05-06 14:10:41 +0800
committerDavid S. Miller <davem@davemloft.net>2020-05-06 13:57:30 -0700
commitcadb5c4e394da0fc13e4d46ad7c1445d60dc175f (patch)
tree4cdf531200599b8b14c32e0b2e79b3f33b8e5dfc /drivers/net/ethernet/cortina
parentnet: ethernet: ti: Use PTR_ERR_OR_ZERO() to simplify code (diff)
downloadlinux-dev-cadb5c4e394da0fc13e4d46ad7c1445d60dc175f.tar.xz
linux-dev-cadb5c4e394da0fc13e4d46ad7c1445d60dc175f.zip
net: cortina: Fix use correct return type for ndo_start_xmit()
The method ndo_start_xmit() returns a value of type netdev_tx_t. Fix the ndo function to use the correct type. Signed-off-by: Yunjian Wang <wangyunjian@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/cortina')
-rw-r--r--drivers/net/ethernet/cortina/gemini.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ethernet/cortina/gemini.c b/drivers/net/ethernet/cortina/gemini.c
index 5bff5c2be88b..8d13ea370db1 100644
--- a/drivers/net/ethernet/cortina/gemini.c
+++ b/drivers/net/ethernet/cortina/gemini.c
@@ -1224,7 +1224,8 @@ map_error:
return -ENOMEM;
}
-static int gmac_start_xmit(struct sk_buff *skb, struct net_device *netdev)
+static netdev_tx_t gmac_start_xmit(struct sk_buff *skb,
+ struct net_device *netdev)
{
struct gemini_ethernet_port *port = netdev_priv(netdev);
unsigned short m = (1 << port->txq_order) - 1;