diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2000-06-30 06:56:25 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2000-06-30 06:56:25 +0000 |
commit | cc0cdf0c1cdbb40090dc40b4e113f7ba313d5ef8 (patch) | |
tree | b73c03897939e51e9b6a153e509e1c31dd87f9ff /sys/dev/atapiscsi | |
parent | 018c61c6e3b949c9576673c6717474a911db0b30 (diff) |
Convert to new timeout API.
Diffstat (limited to 'sys/dev/atapiscsi')
-rw-r--r-- | sys/dev/atapiscsi/atapiscsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/atapiscsi/atapiscsi.c b/sys/dev/atapiscsi/atapiscsi.c index c500d94a866..246a0ec2a43 100644 --- a/sys/dev/atapiscsi/atapiscsi.c +++ b/sys/dev/atapiscsi/atapiscsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atapiscsi.c,v 1.26 2000/06/30 01:03:40 art Exp $ */ +/* $OpenBSD: atapiscsi.c,v 1.27 2000/06/30 06:56:24 art Exp $ */ /* * This code is derived from code with the copyright below. @@ -713,7 +713,7 @@ wdc_atapi_the_machine(chp, xfer, ctxt) case DONE: if (xfer->c_flags & C_POLL_MACHINE) - untimeout (wdc_atapi_timer_handler, xfer); + untimeout(wdc_atapi_timer_handler, xfer); wdc_free_xfer(chp, xfer); wdcstart(chp); |