diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-02 22:21:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-02 22:21:21 +0000 |
commit | aff6cfa8f9ae6a079569cb88a0df995f1777781a (patch) | |
tree | 984e22713753e614949336cd6bc928bfdc21fd00 /sys/arch | |
parent | 4e11df2dcb319643b91a80cfd788e0f4c0ec072b (diff) |
support non-ISA case
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/isa/pccom.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/pccom.c b/sys/arch/i386/isa/pccom.c index a4bab8416eb..c8f231478b4 100644 --- a/sys/arch/i386/isa/pccom.c +++ b/sys/arch/i386/isa/pccom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pccom.c,v 1.18 1998/01/19 06:48:24 deraadt Exp $ */ +/* $OpenBSD: pccom.c,v 1.19 1998/02/02 22:21:20 deraadt Exp $ */ /* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */ /*- @@ -153,6 +153,8 @@ extern int kgdb_debug_init; #elif NPCCOM_ISA #define IS_ISA(parent) \ !strcmp((parent)->dv_cfdata->cf_driver->cd_name, "isa") +#elif NPCCOM_ISAPNP +#define IS_ISA(parent) 0 #endif #if NPCCOM_ISAPNP |