summaryrefslogtreecommitdiff
path: root/sys/dev/pci
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2004-01-31 15:22:27 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2004-01-31 15:22:27 +0000
commit6e9f3a05e60d3edb23bbc8547d8bea91d72a5b2c (patch)
tree30ddd44fbcafdb381ef440b54c97ad0d2a5e0b5f /sys/dev/pci
parent327fb048fbc34778af51ab992e9183980b3ef8a1 (diff)
Add pci_machdep hook for cats. ok deraadt@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r--sys/dev/pci/pcivar.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h
index 29cda47f461..ba13a29e04f 100644
--- a/sys/dev/pci/pcivar.h
+++ b/sys/dev/pci/pcivar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcivar.h,v 1.34 2004/01/28 01:39:40 mickey Exp $ */
+/* $OpenBSD: pcivar.h,v 1.35 2004/01/31 15:22:26 drahn Exp $ */
/* $NetBSD: pcivar.h,v 1.23 1997/06/06 23:48:05 thorpej Exp $ */
/*
@@ -54,7 +54,7 @@ struct pcibus_attach_args;
/*
* Machine-dependent definitions.
*/
-#if (__alpha__ + __atari__ + __i386__ + __arc__ + __powerpc__ + __galileo__ + __sparc64__ + __hppa__ +__amd64__ != 1)
+#if (__alpha__ + __atari__ + __i386__ + __cats__ + __powerpc__ + __galileo__ + __sparc64__ + __hppa__ +__amd64__ != 1)
#error COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE.
#endif
#if __alpha__
@@ -69,6 +69,9 @@ struct pcibus_attach_args;
#if __arc__
#include <arc/pci/pci_machdep.h>
#endif
+#if __cats__
+#include <cats/pci/pci_machdep.h>
+#endif
#if __powerpc__
#include <powerpc/pci/pci_machdep.h>
#endif