diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-12-10 16:15:04 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-12-10 16:15:04 +0000 |
commit | 00837375957866052a8f7727039f2edb1371f432 (patch) | |
tree | b53f0b2eec9fed57dfffcf10b3927a0121efca71 /sys/arch | |
parent | e6d061f3c8691343402c856cf60a7cf4fc04f0c4 (diff) |
Delay two seconds after board reset before trying to probe scsi devices.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc/dev/si.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sparc/dev/si.c b/sys/arch/sparc/dev/si.c index 62230803147..bef22782b14 100644 --- a/sys/arch/sparc/dev/si.c +++ b/sys/arch/sparc/dev/si.c @@ -1,4 +1,4 @@ -/* $OpenBSD: si.c,v 1.23 2006/12/10 16:14:22 miod Exp $ */ +/* $OpenBSD: si.c,v 1.24 2006/12/10 16:15:03 miod Exp $ */ /* $NetBSD: si.c,v 1.38 1997/08/27 11:24:20 bouyer Exp $ */ /*- @@ -481,6 +481,7 @@ si_attach(parent, self, args) si_reset_adapter(ncr_sc); ncr5380_init(ncr_sc); ncr5380_reset_scsibus(ncr_sc); + DELAY(2000000); /* * If the boot path is "sw" or "si" at the moment and it's me, then |