summaryrefslogtreecommitdiff
path: root/sys/dev/ofw
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2007-10-18 18:54:56 +0000
committerjoerg <joerg@NetBSD.org>2007-10-18 18:54:56 +0000
commitd238692c3ed2a0b261d3f0ebcd262d0d545404c8 (patch)
treeeb3e0e92276c8ce9c225ba7f11d227255350ae63 /sys/dev/ofw
parentbc89ba23ac92689206b04b822077f3920d360cb5 (diff)
Initialise the callbacks for tty.t_rstrt_ch in ttymalloc
as all drivers but Sun/SPARC's kd.c use the same arguments. Separate callout_reset into callout_schedule and the initial callout_setfunc using that.
Diffstat (limited to 'sys/dev/ofw')
-rw-r--r--sys/dev/ofw/ofcons.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ofw/ofcons.c b/sys/dev/ofw/ofcons.c
index b42da8b9dac..d3f6730ebdd 100644
--- a/sys/dev/ofw/ofcons.c
+++ b/sys/dev/ofw/ofcons.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ofcons.c,v 1.31 2007/07/09 21:00:52 ad Exp $ */
+/* $NetBSD: ofcons.c,v 1.32 2007/10/18 18:55:00 joerg Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ofcons.c,v 1.31 2007/07/09 21:00:52 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ofcons.c,v 1.32 2007/10/18 18:55:00 joerg Exp $");
#include <sys/param.h>
#include <sys/conf.h>
@@ -258,7 +258,7 @@ ofcons_start(tp)
tp->t_state &= ~TS_BUSY;
if (cl->c_cc) {
tp->t_state |= TS_TIMEOUT;
- callout_reset(&tp->t_rstrt_ch, 1, ttrstrt, (void *)tp);
+ callout_schedule(&tp->t_rstrt_ch, 1);
}
if (cl->c_cc <= tp->t_lowat) {
if (tp->t_state & TS_ASLEEP) {