diff options
Diffstat (limited to 'sys/dev/isa/seagate.c')
-rw-r--r-- | sys/dev/isa/seagate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/seagate.c b/sys/dev/isa/seagate.c index c5a060e494d..28cfba3100e 100644 --- a/sys/dev/isa/seagate.c +++ b/sys/dev/isa/seagate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: seagate.c,v 1.25 2009/01/11 16:54:59 blambert Exp $ */ +/* $OpenBSD: seagate.c,v 1.26 2009/01/21 21:54:00 grange Exp $ */ /* * ST01/02, Future Domain TMC-885, TMC-950 SCSI driver @@ -583,7 +583,7 @@ sea_scsi_cmd(struct scsi_xfer *xs) */ if ((flags & SCSI_POLL) == 0) { timeout_set(&scb->xs->stimeout, sea_timeout, scb); - timeout_add(&scb->xs->stimeout, (xs->timeout * hz) / 1000); + timeout_add_msec(&scb->xs->stimeout, xs->timeout); splx(s); return SUCCESSFULLY_QUEUED; } |