diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-07-02 12:21:47 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-07-02 12:21:47 +0000 |
commit | 4620645845ab08381a324fb2e1bd9237aec1f75d (patch) | |
tree | 42d53bc9574e09d15ab20fe3ce9b2bfe99a0a0f6 /sys | |
parent | 902e072ab7e48243c36edc6685b628ccc5823ec4 (diff) |
Adjust selection time out (all of my devices still work, does everyone elses?)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hp300/dev/scsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/scsi.c b/sys/arch/hp300/dev/scsi.c index fe3a955fa16..9197142c940 100644 --- a/sys/arch/hp300/dev/scsi.c +++ b/sys/arch/hp300/dev/scsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsi.c,v 1.8 1997/04/16 11:56:14 downsj Exp $ */ +/* $OpenBSD: scsi.c,v 1.9 1997/07/02 12:21:46 downsj Exp $ */ /* $NetBSD: scsi.c,v 1.19 1997/04/14 02:33:22 thorpej Exp $ */ /* @@ -614,7 +614,7 @@ issue_select(hd, target, our_addr) hd->scsi_pctl = 0; hd->scsi_temp = (1 << target) | our_addr; /* select timeout is hardcoded to 2ms */ - hd->scsi_tch = 0; + hd->scsi_tch = 15; hd->scsi_tcm = 32; hd->scsi_tcl = 4; |