mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
net: amd: fix return type of ndo_start_xmit function
[ Upstream commit fe72352e37 ]
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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
@@ -440,7 +440,7 @@ static void am79c961_timeout(struct net_device *dev)
|
||||
/*
|
||||
* Transmit a packet
|
||||
*/
|
||||
static int
|
||||
static netdev_tx_t
|
||||
am79c961_sendpacket(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
struct dev_priv *priv = netdev_priv(dev);
|
||||
|
||||
@@ -339,7 +339,8 @@ static unsigned long lance_probe1( struct net_device *dev, struct lance_addr
|
||||
*init_rec );
|
||||
static int lance_open( struct net_device *dev );
|
||||
static void lance_init_ring( struct net_device *dev );
|
||||
static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev );
|
||||
static netdev_tx_t lance_start_xmit(struct sk_buff *skb,
|
||||
struct net_device *dev);
|
||||
static irqreturn_t lance_interrupt( int irq, void *dev_id );
|
||||
static int lance_rx( struct net_device *dev );
|
||||
static int lance_close( struct net_device *dev );
|
||||
@@ -770,7 +771,8 @@ static void lance_tx_timeout (struct net_device *dev)
|
||||
|
||||
/* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX */
|
||||
|
||||
static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev )
|
||||
static netdev_tx_t
|
||||
lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
struct lance_private *lp = netdev_priv(dev);
|
||||
struct lance_ioreg *IO = lp->iobase;
|
||||
|
||||
@@ -893,7 +893,7 @@ static void lance_tx_timeout(struct net_device *dev)
|
||||
netif_wake_queue(dev);
|
||||
}
|
||||
|
||||
static int lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
static netdev_tx_t lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
struct lance_private *lp = netdev_priv(dev);
|
||||
volatile struct lance_regs *ll = lp->ll;
|
||||
|
||||
@@ -235,7 +235,8 @@ struct lance_private {
|
||||
static int lance_probe( struct net_device *dev);
|
||||
static int lance_open( struct net_device *dev );
|
||||
static void lance_init_ring( struct net_device *dev );
|
||||
static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev );
|
||||
static netdev_tx_t lance_start_xmit(struct sk_buff *skb,
|
||||
struct net_device *dev);
|
||||
static irqreturn_t lance_interrupt( int irq, void *dev_id);
|
||||
static int lance_rx( struct net_device *dev );
|
||||
static int lance_close( struct net_device *dev );
|
||||
@@ -511,7 +512,8 @@ static void lance_init_ring( struct net_device *dev )
|
||||
}
|
||||
|
||||
|
||||
static int lance_start_xmit( struct sk_buff *skb, struct net_device *dev )
|
||||
static netdev_tx_t
|
||||
lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
struct lance_private *lp = netdev_priv(dev);
|
||||
int entry, len;
|
||||
|
||||
@@ -1106,7 +1106,7 @@ static void lance_tx_timeout(struct net_device *dev)
|
||||
netif_wake_queue(dev);
|
||||
}
|
||||
|
||||
static int lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
static netdev_tx_t lance_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
{
|
||||
struct lance_private *lp = netdev_priv(dev);
|
||||
int entry, skblen, len;
|
||||
|
||||
@@ -1390,7 +1390,7 @@ static int xgbe_close(struct net_device *netdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int xgbe_xmit(struct sk_buff *skb, struct net_device *netdev)
|
||||
static netdev_tx_t xgbe_xmit(struct sk_buff *skb, struct net_device *netdev)
|
||||
{
|
||||
struct xgbe_prv_data *pdata = netdev_priv(netdev);
|
||||
struct xgbe_hw_if *hw_if = &pdata->hw_if;
|
||||
@@ -1399,7 +1399,7 @@ static int xgbe_xmit(struct sk_buff *skb, struct net_device *netdev)
|
||||
struct xgbe_ring *ring;
|
||||
struct xgbe_packet_data *packet;
|
||||
struct netdev_queue *txq;
|
||||
int ret;
|
||||
netdev_tx_t ret;
|
||||
|
||||
DBGPR("-->xgbe_xmit: skb->len = %d\n", skb->len);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user