summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>1999-06-22 16:28:28 +0000
committerMarc Espie <espie@cvs.openbsd.org>1999-06-22 16:28:28 +0000
commit1c5bcccf8c5b0e58fd71389ab758520aa61ba8f4 (patch)
treeb5ac4fa2f6ecacce0cdb891b5e41c76a09353629 /sys/dev/isa
parent30331fbed35466f79728d7d0043cd125892050fb (diff)
amiga and arc are not cpu, but machines.
Hence the #ifdef corresponds to the kernel Makefile. Hence no __
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/isavar.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/isa/isavar.h b/sys/dev/isa/isavar.h
index 0e29d212e78..e522f7e5dc1 100644
--- a/sys/dev/isa/isavar.h
+++ b/sys/dev/isa/isavar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: isavar.h,v 1.35 1999/06/16 14:38:35 espie Exp $ */
+/* $OpenBSD: isavar.h,v 1.36 1999/06/22 16:28:27 espie Exp $ */
/* $NetBSD: isavar.h,v 1.26 1997/06/06 23:43:57 thorpej Exp $ */
/*-
@@ -122,19 +122,19 @@
*/
struct isabus_attach_args;
-#if (__alpha__ + __amiga__ + __i386__ + __arc__ + __wgrisc__ + __powerpc__ + __hppa__ != 1)
+#if (__alpha__ + amiga + __i386__ + arc + __wgrisc__ + __powerpc__ + __hppa__ != 1)
#error "COMPILING ISA FOR UNSUPPORTED MACHINE, OR MORE THAN ONE."
#endif
#ifdef __alpha__
#include <alpha/isa/isa_machdep.h>
#endif
-#ifdef __amiga__
+#ifdef amiga
#include <amiga/isa/isa_machdep.h>
#endif
#ifdef __i386__
#include <i386/isa/isa_machdep.h>
#endif
-#ifdef __arc__
+#ifdef arc
#include <arc/isa/isa_machdep.h>
#endif
#ifdef __wgrisc__