From a6ed0310a9fa58aa34c9e614ca7b384129b8a2f3 Mon Sep 17 00:00:00 2001 From: KATO Takenori Date: Tue, 5 May 1998 13:21:08 +0000 Subject: [PATCH] Include pc98.h instead of isa.h when PC98 is defined. --- sys/pccard/pccard.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/pccard/pccard.c b/sys/pccard/pccard.c index eeec4b1d9aa..09b76f53043 100644 --- a/sys/pccard/pccard.c +++ b/sys/pccard/pccard.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pccard.c,v 1.58 1998/04/09 14:01:13 nate Exp $ + * $Id: pccard.c,v 1.59 1998/04/20 15:21:02 nate Exp $ */ #include "opt_devfs.h" @@ -65,7 +65,11 @@ * XXX We shouldn't be using processor-specific/bus-specific code in * here, but we need the start of the ISA hole (IOM_BEGIN). */ +#ifdef PC98 +#include +#else #include +#endif SYSCTL_NODE(_machdep, OID_AUTO, pccard, CTLFLAG_RW, 0, "pccard");