Skip to content

Commit 38b4bc2

Browse files
ffainellidavem330
authored andcommitted
net: ethoc: Demote packet dropped error message to debug
Spamming the console with: net eth1: packet dropped can happen fairly frequently if the adapter is busy transmitting, demote the message to a debug print. Signed-off-by: Florian Fainelli <[email protected]> Reviewed-by: Tobias Klauser <[email protected]> Acked-by: Thierry Reding <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent b34296a commit 38b4bc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/ethoc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ static irqreturn_t ethoc_interrupt(int irq, void *dev_id)
576576

577577
/* We always handle the dropped packet interrupt */
578578
if (pending & INT_MASK_BUSY) {
579-
dev_err(&dev->dev, "packet dropped\n");
579+
dev_dbg(&dev->dev, "packet dropped\n");
580580
dev->stats.rx_dropped++;
581581
}
582582

0 commit comments

Comments
 (0)