diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2009-01-11 16:55:00 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2009-01-11 16:55:00 +0000 |
commit | 6254d18da4261171d49fa4a15608cee482b92f47 (patch) | |
tree | 12a1e9c0b0b4950a774fa231889ac60993c9e093 /sys/arch/hp300 | |
parent | 4084e28db0c6bedbe315fa8082c60a0caad21e07 (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/arch/hp300')
-rw-r--r-- | sys/arch/hp300/dev/mt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/mt.c b/sys/arch/hp300/dev/mt.c index a0554a5d597..6104c987831 100644 --- a/sys/arch/hp300/dev/mt.c +++ b/sys/arch/hp300/dev/mt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mt.c,v 1.21 2008/06/12 06:58:33 deraadt Exp $ */ +/* $OpenBSD: mt.c,v 1.22 2009/01/11 16:54:59 blambert Exp $ */ /* $NetBSD: mt.c,v 1.8 1997/03/31 07:37:29 scottr Exp $ */ /* @@ -656,7 +656,7 @@ mtstart(arg) sc->sc_dev.dv_xname); goto fatalerror; } - timeout_add(&sc->sc_intr_to, 4 * hz); + timeout_add_sec(&sc->sc_intr_to, 4); hpibawait(sc->sc_hpibno); return; |