diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-01 16:51:11 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-01 16:51:11 +0000 |
commit | e6700178859f7c12ca3ca6223f8890b62c03e5c2 (patch) | |
tree | 3606a37015a96d78af7694a8d7340afdd1b0de8c /sys/arch/hp300/dev/ite.c | |
parent | 61ce39031c354943763c896117ea06630bc3f0f4 (diff) |
convert to new timeouts
Diffstat (limited to 'sys/arch/hp300/dev/ite.c')
-rw-r--r-- | sys/arch/hp300/dev/ite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/ite.c b/sys/arch/hp300/dev/ite.c index dfb3acae522..752f17b1614 100644 --- a/sys/arch/hp300/dev/ite.c +++ b/sys/arch/hp300/dev/ite.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ite.c,v 1.11 1998/03/06 17:24:12 millert Exp $ */ +/* $OpenBSD: ite.c,v 1.12 2001/05/01 16:51:09 millert Exp $ */ /* $NetBSD: ite.c,v 1.38 1997/03/31 07:37:25 scottr Exp $ */ /* @@ -473,7 +473,7 @@ itestart(tp) } if (hiwat) { tp->t_state |= TS_TIMEOUT; - timeout(ttrstrt, tp, 1); + timeout_add(&tp->t_rstrt_to, 1); } } tp->t_state &= ~TS_BUSY; |