summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Murphree <smurph@cvs.openbsd.org>2001-07-06 00:04:30 +0000
committerSteve Murphree <smurph@cvs.openbsd.org>2001-07-06 00:04:30 +0000
commitb25f51ce5eb019f02d4d54961060b9f3678b5a95 (patch)
tree7314a659dfa01c119f3308751baaf121c81bbcb6
parent96754ab490713d112573dea1937460e93e78b737 (diff)
correct includes for mvmeppc
-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 2fab3f6d7f5..cfb26f2ce03 100644
--- a/sys/dev/isa/isavar.h
+++ b/sys/dev/isa/isavar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: isavar.h,v 1.40 2001/01/29 05:51:00 mickey Exp $ */
+/* $OpenBSD: isavar.h,v 1.41 2001/07/06 00:04:29 smurph 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__ != 1)
+#if (__alpha__ + amiga + __i386__ + arc + __wgrisc__ + __powerpc__ + __mvmeppc__ + __hppa__ != 1)
#error "COMPILING ISA FOR UNSUPPORTED MACHINE, OR MORE THAN ONE."
#endif
#ifdef __alpha__
@@ -143,6 +143,9 @@ struct isabus_attach_args;
#ifdef __powerpc__
#include <powerpc/isa/isa_machdep.h>
#endif
+#ifdef __mvmeppc__
+#include <mvmeppc/isa/isa_machdep.h>
+#endif
#ifdef __hppa__
#include <hppa/isa/isa_machdep.h>
#endif