summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2004-02-01 06:33:30 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2004-02-01 06:33:30 +0000
commita52e3cf68148f9206c252a934f081ccb6e4d7698 (patch)
treefc0f1673d38afb0ef42b28e7687c1f4fa34d2730 /sys/dev/isa
parent79af19cd6dee6a469353773d33ee6160b18fa223 (diff)
add cats support ok deraadt@
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/isavar.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/isa/isavar.h b/sys/dev/isa/isavar.h
index 107ee3c3e35..afbcee498bb 100644
--- a/sys/dev/isa/isavar.h
+++ b/sys/dev/isa/isavar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: isavar.h,v 1.48 2004/01/28 01:39:39 mickey Exp $ */
+/* $OpenBSD: isavar.h,v 1.49 2004/02/01 06:33:29 drahn Exp $ */
/* $NetBSD: isavar.h,v 1.26 1997/06/06 23:43:57 thorpej Exp $ */
/*-
@@ -122,7 +122,7 @@
*/
struct isabus_attach_args;
-#if (__alpha__ + amiga + __i386__ + arc + __wgrisc__ + __powerpc__ + __hppa__ + __amd64__ != 1)
+#if (__alpha__ + amiga + __arm__ + __i386__ + arc + __wgrisc__ + __powerpc__ + __hppa__ != 1)
#error "COMPILING ISA FOR UNSUPPORTED MACHINE, OR MORE THAN ONE."
#endif
#ifdef __alpha__
@@ -131,6 +131,9 @@ struct isabus_attach_args;
#ifdef amiga
#include <amiga/isa/isa_machdep.h>
#endif
+#ifdef __arm__
+#include <cats/isa/isa_machdep.h>
+#endif
#ifdef __i386__
#include <i386/isa/isa_machdep.h>
#endif