summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/npx.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-05-06 12:47:21 +0000
committerpeter <peter@FreeBSD.org>1999-05-06 12:47:21 +0000
commite0954ac124e7d465dab7c3f87057842ea0ca00a4 (patch)
treeec62a3744985e3a7394bac1fe67fba30db719932 /sys/i386/isa/npx.c
parent1ec34cbf0140954d302ca809a465aad08aaf97f9 (diff)
downloadFreeBSD-src-e0954ac124e7d465dab7c3f87057842ea0ca00a4.zip
FreeBSD-src-e0954ac124e7d465dab7c3f87057842ea0ca00a4.tar.gz
I'm not sure why the #ifdef SMP became #if 1 (this overrode the npx probe
and always succeeded as is required on SMP). Anyway, reverting this still compiles and appears ok.
Diffstat (limited to 'sys/i386/isa/npx.c')
-rw-r--r--sys/i386/isa/npx.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/i386/isa/npx.c b/sys/i386/isa/npx.c
index fa79f0b..4911f7c 100644
--- a/sys/i386/isa/npx.c
+++ b/sys/i386/isa/npx.c
@@ -32,7 +32,7 @@
* SUCH DAMAGE.
*
* from: @(#)npx.c 7.2 (Berkeley) 5/12/91
- * $Id: npx.c,v 1.67 1999/04/16 21:22:24 peter Exp $
+ * $Id: npx.c,v 1.68 1999/05/06 09:44:55 bde Exp $
*/
#include "npx.h"
@@ -194,8 +194,7 @@ static int
npx_probe(dev)
device_t dev;
{
-/*#ifdef SMP*/
-#if 1
+#ifdef SMP
return npx_probe1(dev);
@@ -281,8 +280,7 @@ npx_probe1(dev)
*/
fninit();
-/*#ifdef SMP*/
-#if 1
+#ifdef SMP
/*
* Exception 16 MUST work for SMP.
*/
OpenPOWER on IntegriCloud