Skip to content

Commit

Permalink
[PATCH] ep93xx_eth: don't report RX errors
Browse files Browse the repository at this point in the history
Flooding the console with error messages for every RX FIFO overrun,
checksum error and framing error isn't very sensible.  Each of these
errors can occur during normal operation, so stop printk'ing error
messages for RX errors at all.

Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Lennert Buytenhek authored and Jeff Garzik committed Nov 1, 2006
1 parent 79c356f commit 06f0015
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions drivers/net/arm/ep93xx_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,6 @@ static int ep93xx_rx(struct net_device *dev, int *budget)
" %.8x %.8x\n", rstat0, rstat1);

if (!(rstat0 & RSTAT0_RWE)) {
printk(KERN_NOTICE "ep93xx_rx: receive error "
" %.8x %.8x\n", rstat0, rstat1);

ep->stats.rx_errors++;
if (rstat0 & RSTAT0_OE)
ep->stats.rx_fifo_errors++;
Expand Down

0 comments on commit 06f0015

Please sign in to comment.