summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordrahn <drahn@openbsd.org>2004-02-01 06:33:29 +0000
committerdrahn <drahn@openbsd.org>2004-02-01 06:33:29 +0000
commitd514b93f25d04a472bb2eda9c251a46b3d2c69ee (patch)
treec37fbd4972fe9b298cb6feed7b5b6c4614289afc
parentAdd a simple work-around for deadlocking on recursive (diff)
downloadwireguard-openbsd-d514b93f25d04a472bb2eda9c251a46b3d2c69ee.tar.xz
wireguard-openbsd-d514b93f25d04a472bb2eda9c251a46b3d2c69ee.zip
add cats support ok deraadt@
-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