diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-01-16 08:28:31 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-01-16 08:28:31 +0000 |
commit | 4b8e143c6a085fa0d792dc40939d02d0305b3efe (patch) | |
tree | 557cca54736796132eb68296559364b821037f2d | |
parent | d190aa05f79a0992e6459eaae78db4ea347615fa (diff) |
hppa has isa too
-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 0ccb2fc428a..4cc2045234f 100644 --- a/sys/dev/isa/isavar.h +++ b/sys/dev/isa/isavar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: isavar.h,v 1.32 1999/01/07 06:14:48 niklas Exp $ */ +/* $OpenBSD: isavar.h,v 1.33 1999/01/16 08:28:30 mickey 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 != 1) +#if (alpha + amiga + i386 + arc + wgrisc + powerpc +hppa != 1) ERROR: COMPILING ISA FOR UNSUPPORTED MACHINE, OR MORE THAN ONE. #endif #if alpha @@ -143,6 +143,9 @@ ERROR: COMPILING ISA FOR UNSUPPORTED MACHINE, OR MORE THAN ONE. #if powerpc #include <powerpc/isa/isa_machdep.h> #endif +#if hppa +#include <hppa/isa/isa_machdep.h> +#endif #include "isapnp.h" |