diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2006-10-30 13:54:08 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-10-31 20:22:05 -0500 |
commit | 06f0015ace46ce9d313ec02d6b13c47c8e795a6c (patch) | |
tree | 16df40b4cb8d65e1255dbad3cf9be04dbb63ace2 /drivers/net/arm/ep93xx_eth.c | |
parent | 79c356f44b26da9fe357ed1a11e7faec4fd94e13 (diff) |
[PATCH] ep93xx_eth: don't report RX errors
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>
Diffstat (limited to 'drivers/net/arm/ep93xx_eth.c')
-rw-r--r-- | drivers/net/arm/ep93xx_eth.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/arm/ep93xx_eth.c b/drivers/net/arm/ep93xx_eth.c index 90d77ec48fb6..8ebd68e2af98 100644 --- a/drivers/net/arm/ep93xx_eth.c +++ b/drivers/net/arm/ep93xx_eth.c | |||
@@ -230,9 +230,6 @@ static int ep93xx_rx(struct net_device *dev, int *budget) | |||
230 | " %.8x %.8x\n", rstat0, rstat1); | 230 | " %.8x %.8x\n", rstat0, rstat1); |
231 | 231 | ||
232 | if (!(rstat0 & RSTAT0_RWE)) { | 232 | if (!(rstat0 & RSTAT0_RWE)) { |
233 | printk(KERN_NOTICE "ep93xx_rx: receive error " | ||
234 | " %.8x %.8x\n", rstat0, rstat1); | ||
235 | |||
236 | ep->stats.rx_errors++; | 233 | ep->stats.rx_errors++; |
237 | if (rstat0 & RSTAT0_OE) | 234 | if (rstat0 & RSTAT0_OE) |
238 | ep->stats.rx_fifo_errors++; | 235 | ep->stats.rx_fifo_errors++; |