aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/e1000e/netdev.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/e1000e/netdev.c')
-rw-r--r--drivers/net/e1000e/netdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c
index 4630bad52e74..5d5850b556cf 100644
--- a/drivers/net/e1000e/netdev.c
+++ b/drivers/net/e1000e/netdev.c
@@ -1053,7 +1053,7 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter)
1053 adapter->total_tx_packets += total_tx_packets; 1053 adapter->total_tx_packets += total_tx_packets;
1054 netdev->stats.tx_bytes += total_tx_bytes; 1054 netdev->stats.tx_bytes += total_tx_bytes;
1055 netdev->stats.tx_packets += total_tx_packets; 1055 netdev->stats.tx_packets += total_tx_packets;
1056 return (count < tx_ring->count); 1056 return count < tx_ring->count;
1057} 1057}
1058 1058
1059/** 1059/**