diff options
author | 2006-11-05 14:40:33 +0000 | |
---|---|---|
committer | 2006-11-05 14:40:33 +0000 | |
commit | 46587c7c2ed60407457fbc238b9f5989256953d7 (patch) | |
tree | 1d84203a4b8726145ef3af525d32acef1261acab | |
parent | Handle loop reconfiguration in a kernel thread, instead of doing it from (diff) | |
download | wireguard-openbsd-46587c7c2ed60407457fbc238b9f5989256953d7.tar.xz wireguard-openbsd-46587c7c2ed60407457fbc238b9f5989256953d7.zip |
Wait two seconds after reset before probing devices, lets RX23 get detected
again.
-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); } |