diff options
author | 1998-10-29 22:45:30 +0000 | |
---|---|---|
committer | 1998-10-29 22:45:30 +0000 | |
commit | 11e86c0b5f112fc3d75274036c7f947eff13571d (patch) | |
tree | 8ee82e873582556df3815c04ad3b02dc252ac495 | |
parent | provide an option to retreive battery life estimate in minutes (diff) | |
download | wireguard-openbsd-11e86c0b5f112fc3d75274036c7f947eff13571d.tar.xz wireguard-openbsd-11e86c0b5f112fc3d75274036c7f947eff13571d.zip |
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 */ |