diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2000-07-06 15:42:50 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2000-07-06 15:42:50 +0000 |
commit | 59f10056ba49836bf02900a028a9c4b84010341e (patch) | |
tree | 27df02337fe6c919f4babb26cbb8c363d34bae3f /sys/arch/hp300/dev/ppi.c | |
parent | af55ec3e87ab60a643fe58cc5d0de7223144f419 (diff) |
Change splsoftclock() call to spllowersoftclock() to conform with other
code and keep old behaviour. (art@ ok)
Diffstat (limited to 'sys/arch/hp300/dev/ppi.c')
-rw-r--r-- | sys/arch/hp300/dev/ppi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/ppi.c b/sys/arch/hp300/dev/ppi.c index 043baab81bd..175f2f137dd 100644 --- a/sys/arch/hp300/dev/ppi.c +++ b/sys/arch/hp300/dev/ppi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ppi.c,v 1.6 1997/04/16 11:56:14 downsj Exp $ */ +/* $OpenBSD: ppi.c,v 1.7 2000/07/06 15:42:48 ho Exp $ */ /* $NetBSD: ppi.c,v 1.13 1997/04/02 22:37:33 scottr Exp $ */ /* @@ -312,7 +312,7 @@ again: /* * Check if we timed out during sleep or uiomove */ - (void) splsoftclock(); + (void) spllowersoftclock(); if ((sc->sc_flags & PPIF_UIO) == 0) { #ifdef DEBUG if (ppidebug & PDB_IO) |