drivers/net: return operator cleanup
[platform/kernel/linux-starfive.git] / drivers / net / e1000e / netdev.c
index 4630bad..5d5850b 100644 (file)
@@ -1053,7 +1053,7 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter)
        adapter->total_tx_packets += total_tx_packets;
        netdev->stats.tx_bytes += total_tx_bytes;
        netdev->stats.tx_packets += total_tx_packets;
-       return (count < tx_ring->count);
+       return count < tx_ring->count;
 }
 
 /**