summaryrefslogtreecommitdiff
path: root/sys/dev/eisa/aha1742.c
diff options
context:
space:
mode:
authorBret Lambert <blambert@cvs.openbsd.org>2009-01-11 16:55:00 +0000
committerBret Lambert <blambert@cvs.openbsd.org>2009-01-11 16:55:00 +0000
commit6254d18da4261171d49fa4a15608cee482b92f47 (patch)
tree12a1e9c0b0b4950a774fa231889ac60993c9e093 /sys/dev/eisa/aha1742.c
parent4084e28db0c6bedbe315fa8082c60a0caad21e07 (diff)
Actual final round of timeout_add(to, n * hz) -> timeout_add_sec(to, n)
conversions. ok kettenis@ ok krw@ (possibly for the second time :)
Diffstat (limited to 'sys/dev/eisa/aha1742.c')
-rw-r--r--sys/dev/eisa/aha1742.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/eisa/aha1742.c b/sys/dev/eisa/aha1742.c
index 8283321afc9..e45e16209be 100644
--- a/sys/dev/eisa/aha1742.c
+++ b/sys/dev/eisa/aha1742.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: aha1742.c,v 1.28 2008/11/25 17:52:02 krw Exp $ */
+/* $OpenBSD: aha1742.c,v 1.29 2009/01/11 16:54:59 blambert Exp $ */
/* $NetBSD: aha1742.c,v 1.61 1996/05/12 23:40:01 mycroft Exp $ */
/*
@@ -1165,7 +1165,7 @@ ahb_timeout(arg)
ahb_send_mbox(sc, OP_ABORT_ECB, ecb);
/* 2 secs for the abort */
if ((xs->flags & SCSI_POLL) == 0)
- timeout_add(&ecb->xs->stimeout, 2 * hz);
+ timeout_add_sec(&ecb->xs->stimeout, 2);
}
splx(s);