The patch titled
B44: increase wait loop
has been added to the -mm tree. Its filename is
b44-increase-wait-loop.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: B44: increase wait loop
From: "Gary Zambrano" <[EMAIL PROTECTED]>
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 <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/net/b44.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -puN drivers/net/b44.c~b44-increase-wait-loop drivers/net/b44.c
--- a/drivers/net/b44.c~b44-increase-wait-loop
+++ a/drivers/net/b44.c
@@ -1289,7 +1289,7 @@ static void b44_chip_reset(struct b44 *b
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) {
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
arm-dma-mappingh.patch
avr32-dma-mappingh.patch
b44-increase-wait-loop.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html