From 9e59a79f26e3bb806543ce78c4026a1068862cd3 Mon Sep 17 00:00:00 2001 From: "Dale S. Rahn" Date: Fri, 9 Oct 1998 02:06:41 +0000 Subject: requesting tty and net soft interrupts does not mean requesting a clock soft interrupt. --- sys/arch/powerpc/include/intr.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/arch/powerpc/include/intr.h') 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) -- cgit v1.2.3