Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

can: xilinx: 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: Marc Kleine-Budde <mkl@pengutronix.de>

authored by

YueHaibing and committed by
Marc Kleine-Budde
81de0cd6 3b17d417

+1 -1
+1 -1
drivers/net/can/xilinx_can.c
··· 612 612 * 613 613 * Return: NETDEV_TX_OK on success and NETDEV_TX_BUSY when the tx queue is full 614 614 */ 615 - static int xcan_start_xmit(struct sk_buff *skb, struct net_device *ndev) 615 + static netdev_tx_t xcan_start_xmit(struct sk_buff *skb, struct net_device *ndev) 616 616 { 617 617 struct xcan_priv *priv = netdev_priv(ndev); 618 618 int ret;