From ed3510e3ec23ddc3fdabcc9e73813f8ef36614e8 Mon Sep 17 00:00:00 2001 From: Aaron Campbell Date: Sun, 18 Nov 2001 20:46:50 +0000 Subject: Revert niklas's broken ICU interrupt handling changes; deraadt@ ok --- sys/arch/i386/isa/npx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/arch/i386/isa/npx.c') diff --git a/sys/arch/i386/isa/npx.c b/sys/arch/i386/isa/npx.c index fe04652777f..04fb03b0533 100644 --- a/sys/arch/i386/isa/npx.c +++ b/sys/arch/i386/isa/npx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: npx.c,v 1.21 2001/11/12 20:28:20 niklas Exp $ */ +/* $OpenBSD: npx.c,v 1.22 2001/11/18 20:46:49 aaron Exp $ */ /* $NetBSD: npx.c,v 1.57 1996/05/12 23:12:24 mycroft Exp $ */ #if 0 @@ -537,7 +537,7 @@ npxdna(p) } #ifdef DIAGNOSTIC - if (cpl != IPL_NONE || npx_nointr != 0) + if (cpl != 0 || npx_nointr != 0) panic("npxdna: masked"); #endif @@ -612,7 +612,7 @@ npxsave() { #ifdef DIAGNOSTIC - if (cpl != IPL_NONE || npx_nointr != 0) + if (cpl != 0 || npx_nointr != 0) panic("npxsave: masked"); #endif iprintf(("Fork")); -- cgit v1.2.3