diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-10-09 02:06:41 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-10-09 02:06:41 +0000 |
commit | 9e59a79f26e3bb806543ce78c4026a1068862cd3 (patch) | |
tree | 4ea7a25d45aa0ea58cf63443fec1a8118a0dadff /sys/arch/powerpc/include | |
parent | 598bb36f8744193236e901bc4e2da37528d6bd0c (diff) |
requesting tty and net soft interrupts does not mean requesting a clock
soft interrupt.
Diffstat (limited to 'sys/arch/powerpc/include')
-rw-r--r-- | sys/arch/powerpc/include/intr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/powerpc/include/intr.h b/sys/arch/powerpc/include/intr.h index 589c6f93448..286226404b2 100644 --- a/sys/arch/powerpc/include/intr.h +++ b/sys/arch/powerpc/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.2 1998/08/25 06:53:19 pefo Exp $ */ +/* $OpenBSD: intr.h,v 1.3 1998/10/09 02:06:40 rahnds Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom, Opsycon AB and RTMX Inc, USA. @@ -138,8 +138,8 @@ set_sint(pending) #define splsofttty() splraise(SINT_TTY) #define setsoftclock() set_sint(SINT_CLOCK); -#define setsoftnet() set_sint(SINT_NET|SINT_CLOCK); -#define setsofttty() set_sint(SINT_TTY|SINT_CLOCK); +#define setsoftnet() set_sint(SINT_NET); +#define setsofttty() set_sint(SINT_TTY); #define splhigh() splraise(0xffffffff) #define spl0() spllower(0) |