diff options
Diffstat (limited to 'sys/dev/isa/isavar.h')
-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 |