summaryrefslogtreecommitdiffstats
path: root/sys/scsi
diff options
context:
space:
mode:
authorats <ats@FreeBSD.org>1994-11-12 17:13:23 +0000
committerats <ats@FreeBSD.org>1994-11-12 17:13:23 +0000
commit112342be8da3bd6af4c6b24b12b4c69df80589cd (patch)
tree12626df2cb6c8cb1634d738db4a893b472764bf9 /sys/scsi
parentefb0e42fc71138e10435edbeff5e8dc8c23db758 (diff)
downloadFreeBSD-src-112342be8da3bd6af4c6b24b12b4c69df80589cd.zip
FreeBSD-src-112342be8da3bd6af4c6b24b12b4c69df80589cd.tar.gz
Delete a bogus check that the SCSI_DELAY only works for the first
scsi adapter. Let it work on every adapter. Someone want to rewrite this to be coupled with the adapter specification in the config file, so that you can say which adapters need it ?
Diffstat (limited to 'sys/scsi')
-rw-r--r--sys/scsi/scsiconf.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c
index 8ea5657..7a723ec 100644
--- a/sys/scsi/scsiconf.c
+++ b/sys/scsi/scsiconf.c
@@ -14,7 +14,7 @@
*
* Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
*
- * $Id: scsiconf.c,v 1.11 1994/10/19 20:34:15 wollman Exp $
+ * $Id: scsiconf.c,v 1.12 1994/10/23 21:27:55 wollman Exp $
*/
#include <sys/types.h>
@@ -399,9 +399,7 @@ scsi_attachdevs(sc_link_proto)
#undef SCSI_DELAY
#define SCSI_DELAY 2
#endif /* SCSI_DELAY */
- if (scsibus == 0) {
- DELAY(1000000 * SCSI_DELAY);
- }
+ DELAY(1000000 * SCSI_DELAY);
scsibus++;
scsi_probe_bus(scsibus - 1,-1,-1);
}
OpenPOWER on IntegriCloud