Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/isa ifdef NISAPNP -> if NISAPNP > 0



details:   https://anonhg.NetBSD.org/src/rev/8eb0c8274992
branches:  trunk
changeset: 511420:8eb0c8274992
user:      fvdl <fvdl%NetBSD.org@localhost>
date:      Tue Jun 19 12:45:23 2001 +0000

description:
ifdef NISAPNP -> if NISAPNP > 0

diffstat:

 sys/dev/isa/isa.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 2c01f5c53925 -r 8eb0c8274992 sys/dev/isa/isa.c
--- a/sys/dev/isa/isa.c Tue Jun 19 12:34:26 2001 +0000
+++ b/sys/dev/isa/isa.c Tue Jun 19 12:45:23 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isa.c,v 1.107 2000/03/29 03:43:31 simonb Exp $ */
+/*     $NetBSD: isa.c,v 1.108 2001/06/19 12:45:23 fvdl Exp $   */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -51,7 +51,7 @@
 #include "isadma.h"
 
 #include "isapnp.h"
-#ifdef NISAPNP
+#if NISAPNP > 0
 #include <dev/isapnp/isapnpreg.h>
 #include <dev/isapnp/isapnpvar.h>
 #endif



Home | Main Index | Thread Index | Old Index