diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2001-07-06 00:04:30 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2001-07-06 00:04:30 +0000 |
commit | b25f51ce5eb019f02d4d54961060b9f3678b5a95 (patch) | |
tree | 7314a659dfa01c119f3308751baaf121c81bbcb6 | |
parent | 96754ab490713d112573dea1937460e93e78b737 (diff) |
correct includes for mvmeppc
-rw-r--r-- | sys/dev/isa/isavar.h | 7 |
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 |