summaryrefslogtreecommitdiff
path: root/sys/dev/pci/pcivar.h
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>1999-06-16 14:38:37 +0000
committerMarc Espie <espie@cvs.openbsd.org>1999-06-16 14:38:37 +0000
commit552b9d4279039986bd175e24c5994df22688c1a6 (patch)
tree1577296eaaaa400dd41ff3800229c6b7da0d9c72 /sys/dev/pci/pcivar.h
parent2810ed462ee6cd7f96afc43b988e660da74da548 (diff)
On the off chance that something that is NOT the kernel includes those
files...
Diffstat (limited to 'sys/dev/pci/pcivar.h')
-rw-r--r--sys/dev/pci/pcivar.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h
index f55be98384e..e54214335bb 100644
--- a/sys/dev/pci/pcivar.h
+++ b/sys/dev/pci/pcivar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcivar.h,v 1.14 1999/02/01 16:35:49 pefo Exp $ */
+/* $OpenBSD: pcivar.h,v 1.15 1999/06/16 14:38:36 espie Exp $ */
/* $NetBSD: pcivar.h,v 1.23 1997/06/06 23:48:05 thorpej Exp $ */
/*
@@ -54,25 +54,25 @@ struct pcibus_attach_args;
/*
* Machine-dependent definitions.
*/
-#if (alpha + atari + i386 + arc + powerpc + galileo != 1)
+#if (__alpha__ + __atari__ + __i386__ + __arc__ + __powerpc__ + __galileo__ != 1)
ERROR: COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE.
#endif
-#if alpha
+#if __alpha__
#include <alpha/pci/pci_machdep.h>
#endif
-#if atari
+#if __atari__
#include <atari/pci/pci_machdep.h>
#endif
-#if i386
+#if __i386__
#include <i386/pci/pci_machdep.h>
#endif
-#if arc
+#if __arc__
#include <arc/pci/pci_machdep.h>
#endif
-#if powerpc
+#if __powerpc__
#include <powerpc/pci/pci_machdep.h>
#endif
-#if galileo
+#if __galileo__
#include <galileo/pci/pci_machdep.h>
#endif