diff options
author | Bret Lambert <blambert@cvs.openbsd.org> | 2009-07-31 20:43:32 +0000 |
---|---|---|
committer | Bret Lambert <blambert@cvs.openbsd.org> | 2009-07-31 20:43:32 +0000 |
commit | e65a159880f83af3d8ba201c9473d6e8a9833ec7 (patch) | |
tree | ecb5712310d8eadb749c12968ec90aa40cdf6051 /sys/dev/isa/sbdsp.c | |
parent | 1b4d91db9fae2164f96cde47bfd8ff820ee7d4bb (diff) |
timeout_add -> timeout_add_msec
ok jakemsr@
Diffstat (limited to 'sys/dev/isa/sbdsp.c')
-rw-r--r-- | sys/dev/isa/sbdsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/sbdsp.c b/sys/dev/isa/sbdsp.c index 2f4ee99385d..12d6e5cd063 100644 --- a/sys/dev/isa/sbdsp.c +++ b/sys/dev/isa/sbdsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sbdsp.c,v 1.27 2008/01/14 01:25:50 jakemsr Exp $ */ +/* $OpenBSD: sbdsp.c,v 1.28 2009/07/31 20:43:31 blambert Exp $ */ /* * Copyright (c) 1991-1993 Regents of the University of California. @@ -1018,7 +1018,7 @@ sbdsp_pause(sc) { extern int hz; - timeout_add(&sc->sc_tmo, hz/8); + timeout_add_msec(&sc->sc_tmo, 125); /* 8x per second */ (void)tsleep(sbdsp_to, PWAIT, "sbpause", 0); } |