summaryrefslogtreecommitdiff
path: root/sys/dev/ic/iha.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2001-07-09 15:20:29 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2001-07-09 15:20:29 +0000
commit4a862059f1fc650d6e7d608c4684f64856290b9c (patch)
treecb744c5151b1a1f104a88f188ffe10c7a76bfe90 /sys/dev/ic/iha.c
parentb48d7a1ae4e4496dfba1b8bff80121ef670a3c7f (diff)
Fix incorrect logic 'optimization' so that sync is negotiated even if
wide is not. Now my CD drives on the narrow channel of the INI-9100UW negotiate to the same configuration they do on other cards.
Diffstat (limited to 'sys/dev/ic/iha.c')
-rw-r--r--sys/dev/ic/iha.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/ic/iha.c b/sys/dev/ic/iha.c
index a75e967d451..a3a29e93c20 100644
--- a/sys/dev/ic/iha.c
+++ b/sys/dev/ic/iha.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: iha.c,v 1.3 2001/02/20 00:47:33 krw Exp $ */
+/* $OpenBSD: iha.c,v 1.4 2001/07/09 15:20:28 krw Exp $ */
/*
* Initio INI-9xxxU/UW SCSI Device Driver
*
@@ -1054,7 +1054,9 @@ tul_scsi(sc, iot, ioh)
if ((pScb->SCB_Flags & SCSI_RESET) == 0) {
bus_space_write_1(iot, ioh, TUL_SYNCM, pTcs->TCS_JS_Period);
- if ((pTcs->TCS_Flags & FLAG_NO_NEGOTIATE) == 0)
+ if (((pTcs->TCS_Flags & FLAG_NO_NEG_WIDE) == 0)
+ ||
+ ((pTcs->TCS_Flags & FLAG_NO_NEG_SYNC) == 0))
tul_select(sc, iot, ioh, pScb, SELATNSTOP);
else if (pScb->SCB_TagMsg != 0)