diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-11-05 14:40:34 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-11-05 14:40:34 +0000 |
commit | 0b1a7707fb75bd9628e47e7c3ea417b1cffe4ed5 (patch) | |
tree | f55d63304332e0ac1e600e8f69474ee74c9308d1 /sys/arch | |
parent | 4947185b2e79d3035f39094f7759f956ce5230c4 (diff) |
Wait two seconds after reset before probing devices, lets RX23 get detected
again.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/vax/vsa/ncr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/vax/vsa/ncr.c b/sys/arch/vax/vsa/ncr.c index 42448636c76..7d450101a8c 100644 --- a/sys/arch/vax/vsa/ncr.c +++ b/sys/arch/vax/vsa/ncr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr.c,v 1.18 2006/07/19 20:22:38 miod Exp $ */ +/* $OpenBSD: ncr.c,v 1.19 2006/11/05 14:40:33 miod Exp $ */ /* $NetBSD: ncr.c,v 1.32 2000/06/25 16:00:43 ragge Exp $ */ /*- @@ -267,6 +267,7 @@ si_attach(parent, self, aux) */ ncr5380_init(ncr_sc); ncr5380_reset_scsibus(ncr_sc); + DELAY(2000000); config_found(&(ncr_sc->sc_dev), &(ncr_sc->sc_link), scsiprint); } |