Include pc98.h instead of isa.h when PC98 is defined.

This commit is contained in:
KATO Takenori 1998-05-05 13:21:08 +00:00
parent 68b675d4af
commit a6ed0310a9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35748

View File

@ -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 <pc98/pc98/pc98.h>
#else
#include <i386/isa/isa.h>
#endif
SYSCTL_NODE(_machdep, OID_AUTO, pccard, CTLFLAG_RW, 0, "pccard");