blob: 8e1615f770e54cb40f640abc13aa53043e01c83d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- a/drivers/net/b44.c
+++ b/drivers/net/b44.c
@@ -191,10 +190,11 @@ static int b44_wait_bit(struct b44 *bp,
udelay(10);
}
if (i == timeout) {
+#if 0
if (net_ratelimit())
netdev_err(bp->dev, "BUG! Timeout waiting for bit %08x of register %lx to %s\n",
bit, reg, clear ? "clear" : "set");
-
+#endif
return -ENODEV;
}
return 0;
|