diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-10-29 22:45:31 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-10-29 22:45:31 +0000 |
commit | 2b9096668985a1259fddc6f53b53a466a4388892 (patch) | |
tree | 55acbd17bf4ddc857f2c54510c04431f55e5240a | |
parent | bfc0a4b8bba9b4866d44e8356d09edba55da5be8 (diff) |
hppa could be eisa too
-rw-r--r-- | sys/dev/eisa/eisavar.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/eisa/eisavar.h b/sys/dev/eisa/eisavar.h index 2115d6b5960..bf68c40d9fb 100644 --- a/sys/dev/eisa/eisavar.h +++ b/sys/dev/eisa/eisavar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: eisavar.h,v 1.8 1998/01/20 18:40:26 niklas Exp $ */ +/* $OpenBSD: eisavar.h,v 1.9 1998/10/29 22:45:30 mickey Exp $ */ /* $NetBSD: eisavar.h,v 1.11 1997/06/06 23:30:07 thorpej Exp $ */ /* @@ -54,7 +54,7 @@ struct eisabus_attach_args; /* * Machine-dependent definitions. */ -#if (alpha + i386 + arc != 1) +#if (alpha + i386 + arc + hppa != 1) ERROR: COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE. #endif #if alpha @@ -66,6 +66,9 @@ ERROR: COMPILING FOR UNSUPPORTED MACHINE, OR MORE THAN ONE. #if arc #include <arc/eisa/eisa_machdep.h> #endif +#if hppa +#include <hppa/eisa/eisa_machdep.h> +#endif typedef int eisa_slot_t; /* really only needs to be 4 bits */ |