summaryrefslogtreecommitdiffstats
path: root/drivers/net/b44.c
diff options
context:
space:
mode:
authorGary Zambrano2007-02-16 22:27:27 +0100
committerJeff Garzik2007-02-17 21:37:14 +0100
commit40ee8c768cbb57aac7e55f7b54572afa8a9eac5a (patch)
tree2d62fc3e95be6e4af542d237ed4f16c36f0d059b /drivers/net/b44.c
parentb44: replace define (diff)
downloadkernel-qcow2-linux-40ee8c768cbb57aac7e55f7b54572afa8a9eac5a.tar.gz
kernel-qcow2-linux-40ee8c768cbb57aac7e55f7b54572afa8a9eac5a.tar.xz
kernel-qcow2-linux-40ee8c768cbb57aac7e55f7b54572afa8a9eac5a.zip
B44: increase wait loop
The b44 Enet control disable bit may take longer to clear on some systems, so the loop count is increased with this patch. Functionality is not compromised, but a debug message can be seen when the bit is not cleared within the count value. Thanks to Vasileios Lourdas who reported the problem. Signed-off by: Gary Zambrano <zambrano@broadcom.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/b44.c')
-rw-r--r--drivers/net/b44.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/b44.c b/drivers/net/b44.c
index 9332f4c2dc6f..aaada572732a 100644
--- a/drivers/net/b44.c
+++ b/drivers/net/b44.c
@@ -1288,7 +1288,7 @@ static void b44_chip_reset(struct b44 *bp)
if (ssb_is_core_up(bp)) {
bw32(bp, B44_RCV_LAZY, 0);
bw32(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE);
- b44_wait_bit(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE, 100, 1);
+ b44_wait_bit(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE, 200, 1);
bw32(bp, B44_DMATX_CTRL, 0);
bp->tx_prod = bp->tx_cons = 0;
if (br32(bp, B44_DMARX_STAT) & DMARX_STAT_EMASK) {