diff options
author | kato <kato@FreeBSD.org> | 1998-01-14 08:13:32 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1998-01-14 08:13:32 +0000 |
commit | 6c07a7020b45303529e028c6dedcec58876bf57c (patch) | |
tree | 7a69755b024f23bd65d0c2e76372ca9fe16ffd2c | |
parent | aae8ab24bfc8a272fac33fd0907013d5318d926e (diff) | |
download | FreeBSD-src-6c07a7020b45303529e028c6dedcec58876bf57c.zip FreeBSD-src-6c07a7020b45303529e028c6dedcec58876bf57c.tar.gz |
Include pc98.h instead of isa.h when PC98 is defined.
-rw-r--r-- | sys/pci/ide_pci.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/pci/ide_pci.c b/sys/pci/ide_pci.c index c8af856..92003e2 100644 --- a/sys/pci/ide_pci.c +++ b/sys/pci/ide_pci.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ide_pci.c,v 1.5 1997/11/07 08:53:27 phk Exp $ + * $Id: ide_pci.c,v 1.6 1997/12/19 02:25:51 dyson Exp $ */ #include "pci.h" @@ -45,7 +45,11 @@ #include <vm/pmap.h> #include <i386/isa/wdreg.h> +#ifdef PC98 +#include <pc98/pc98/pc98.h> +#else #include <i386/isa/isa.h> +#endif #include <i386/isa/isa_device.h> #include <pci/pcivar.h> |