diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-12-04 00:00:37 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-12-04 00:00:37 +0000 |
commit | 9bf62191c2a2e2d5aeb7537858d4a8164ea9ebcc (patch) | |
tree | 2bdc2c594e23844416a8dc77a6c5a4b0f5517b74 /sys/arch/i386/isa/npx.c | |
parent | 1354afe4470c3aeace3d9c3ea0857e8ba5499de4 (diff) |
New try at a level based irq system.
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 04fb03b0533..b6fa7145ff1 100644 --- a/sys/arch/i386/isa/npx.c +++ b/sys/arch/i386/isa/npx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: npx.c,v 1.22 2001/11/18 20:46:49 aaron Exp $ */ +/* $OpenBSD: npx.c,v 1.23 2001/12/04 00:00:36 niklas 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 != 0 || npx_nointr != 0) + if (cpl != IPL_NONE || npx_nointr != 0) panic("npxdna: masked"); #endif @@ -612,7 +612,7 @@ npxsave() { #ifdef DIAGNOSTIC - if (cpl != 0 || npx_nointr != 0) + if (cpl != IPL_NONE || npx_nointr != 0) panic("npxsave: masked"); #endif iprintf(("Fork")); |