summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2003-12-11 20:21:20 +0000
committerWarner Losh <imp@FreeBSD.org>2003-12-11 20:21:20 +0000
commit5fb427aebfe341f3497cc82e2ccd94b8d46b8635 (patch)
tree9aee58e87586b53a2b5b85b2d316d7c508937466 /sys
parent364e6ad2a418cfbbe5d281333681b12136861cc5 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/wi/if_wi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/wi/if_wi.c b/sys/dev/wi/if_wi.c
index 6281a1d84da6..3c9014503a33 100644
--- a/sys/dev/wi/if_wi.c
+++ b/sys/dev/wi/if_wi.c
@@ -2390,7 +2390,7 @@ wi_cmd(struct wi_softc *sc, int cmd, int val0, int val1, int val2)
count++;
/* wait for the busy bit to clear */
- for (i = 500; i > 0; i--) { /* 500ms */
+ for (i = 5000; i > 0; i--) { /* 5000ms */
if (!(CSR_READ_2(sc, WI_COMMAND) & WI_CMD_BUSY))
break;
DELAY(1*1000); /* 1ms */