diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-11-18 20:46:50 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-11-18 20:46:50 +0000 |
commit | ed3510e3ec23ddc3fdabcc9e73813f8ef36614e8 (patch) | |
tree | 4f8baa91f7ddf04a3ca8636e81a37082d4b94cca /sys/arch/i386/isa/npx.c | |
parent | 8376e8e1fbcb5f1432e20d080b7f7e197c6a7f07 (diff) |
Revert niklas's broken ICU interrupt handling changes; deraadt@ ok
Diffstat (limited to 'sys/arch/i386/isa/npx.c')
-rw-r--r-- | sys/arch/i386/isa/npx.c | 6 |
1 files changed, 3 insertions, 3 deletions
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")); |