diff options
Diffstat (limited to 'drivers/net/igbvf/netdev.c')
-rw-r--r-- | drivers/net/igbvf/netdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/igbvf/netdev.c b/drivers/net/igbvf/netdev.c index c7fab80d2490..265501348f33 100644 --- a/drivers/net/igbvf/netdev.c +++ b/drivers/net/igbvf/netdev.c | |||
@@ -845,7 +845,7 @@ static bool igbvf_clean_tx_irq(struct igbvf_ring *tx_ring) | |||
845 | } | 845 | } |
846 | adapter->net_stats.tx_bytes += total_bytes; | 846 | adapter->net_stats.tx_bytes += total_bytes; |
847 | adapter->net_stats.tx_packets += total_packets; | 847 | adapter->net_stats.tx_packets += total_packets; |
848 | return (count < tx_ring->count); | 848 | return count < tx_ring->count; |
849 | } | 849 | } |
850 | 850 | ||
851 | static irqreturn_t igbvf_msix_other(int irq, void *data) | 851 | static irqreturn_t igbvf_msix_other(int irq, void *data) |