The Alpha probably wouldn't appreciate getting the pc98 isa port

definitions.  Change it from  machine != I386 to machine == PC98.
This commit is contained in:
Peter Wemm 1999-04-19 14:40:55 +00:00
parent c528a79a0d
commit 14dd465c07
1 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@
static char sccsid[] = "@(#)mkioconf.c 8.2 (Berkeley) 1/21/94";
#endif
static const char rcsid[] =
"$Id: mkioconf.c,v 1.51 1999/04/18 13:36:29 peter Exp $";
"$Id: mkioconf.c,v 1.52 1999/04/18 14:27:33 kato Exp $";
#endif /* not lint */
#include <err.h>
@ -190,10 +190,10 @@ newbus_ioconf()
fprintf(fp, "\n");
fprintf(fp, "#include <sys/queue.h>\n");
fprintf(fp, "#include <sys/sysctl.h>\n");
if (machine == MACHINE_I386)
fprintf(fp, "#include <isa/isareg.h>\n");
else
if (machine == MACHINE_PC98)
fprintf(fp, "#include <pc98/pc98/pc98.h>\n");
else
fprintf(fp, "#include <isa/isareg.h>\n");
fprintf(fp, "#include <sys/bus_private.h>\n");
fprintf(fp, "\n");