summaryrefslogtreecommitdiff
path: root/sys/arch/sparc
diff options
context:
space:
mode:
authorHakan Olsson <ho@cvs.openbsd.org>2000-07-06 15:42:50 +0000
committerHakan Olsson <ho@cvs.openbsd.org>2000-07-06 15:42:50 +0000
commit59f10056ba49836bf02900a028a9c4b84010341e (patch)
tree27df02337fe6c919f4babb26cbb8c363d34bae3f /sys/arch/sparc
parentaf55ec3e87ab60a643fe58cc5d0de7223144f419 (diff)
Change splsoftclock() call to spllowersoftclock() to conform with other
code and keep old behaviour. (art@ ok)
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r--sys/arch/sparc/dev/cons.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/cons.c b/sys/arch/sparc/dev/cons.c
index 240e1f4c9f2..d14aa8c2fb1 100644
--- a/sys/arch/sparc/dev/cons.c
+++ b/sys/arch/sparc/dev/cons.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cons.c,v 1.8 2000/07/05 13:16:12 art Exp $ */
+/* $OpenBSD: cons.c,v 1.9 2000/07/06 15:42:48 ho Exp $ */
/* $NetBSD: cons.c,v 1.30 1997/07/07 23:30:23 pk Exp $ */
/*
@@ -531,7 +531,7 @@ cnfbstart(tp)
* XXX - this is just too ugly.
*/
if (s == 0) {
- (void) splsoftclock();
+ (void) spllowersoftclock();
cnfbdma((void *)tp);
} else
timeout(cnfbdma, tp, 1);