Skip to content

Commit c192a12

Browse files
lucvoodledford
authored andcommitted
IB/nes: fix nes_netdev_start_xmit()'s return type
The method ndo_start_xmit() is defined as returning an 'netdev_tx_t', which is a typedef for an enum type, but the implementation in this driver returns an 'int'. Fix this by returning 'netdev_tx_t' in this driver too. Signed-off-by: Luc Van Oostenryck <[email protected]> Reviewed-by: Leon Romanovsky <[email protected]> Signed-off-by: Doug Ledford <[email protected]>
1 parent 2918c1a commit c192a12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/infiniband/hw/nes/nes_nic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ static bool nes_nic_send(struct sk_buff *skb, struct net_device *netdev)
461461
/**
462462
* nes_netdev_start_xmit
463463
*/
464-
static int nes_netdev_start_xmit(struct sk_buff *skb, struct net_device *netdev)
464+
static netdev_tx_t nes_netdev_start_xmit(struct sk_buff *skb, struct net_device *netdev)
465465
{
466466
struct nes_vnic *nesvnic = netdev_priv(netdev);
467467
struct nes_device *nesdev = nesvnic->nesdev;

0 commit comments

Comments
 (0)