Move some code around in preparation for nca_pcmcia.
This commit is contained in:
parent
c62e39490c
commit
5960b2aec6
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.7 2000/03/15 07:17:06 sommerfeld Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2000/03/18 13:05:20 mycroft Exp $
|
||||
|
||||
INCSDIR= /usr/include/dev/ic
|
||||
|
||||
|
@ -14,7 +14,8 @@ INCS= ad1848reg.h ahareg.h ahavar.h aic6360reg.h aic6360var.h \
|
|||
interwavevar.h ispmbox.h ispreg.h ispvar.h lemacreg.h lemacvar.h \
|
||||
lptreg.h lptvar.h mb86960reg.h mb86960var.h mc146818reg.h \
|
||||
mc68450reg.h mc6845reg.h midwayreg.h midwayvar.h ncr5380reg.h \
|
||||
ncr5380var.h ncr53c9xreg.h ncr53c9xvar.h ne2000reg.h ne2000var.h \
|
||||
ncr5380var.h ncr53c400reg.h ncr53c9xreg.h ncr53c9xvar.h ne2000reg.h \
|
||||
ne2000var.h \
|
||||
nec765reg.h ns16450reg.h ns16550reg.h opl3sa3reg.h pcdisplay.h \
|
||||
pcdisplayvar.h pckbcvar.h pdqreg.h pdqvar.h rrunnerreg.h rrunnervar.h \
|
||||
smc83c170reg.h smc83c170var.h smc90cx6reg.h smc91cxxreg.h \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ncareg.h,v 1.1 1998/10/25 18:41:56 christos Exp $ */
|
||||
/* $NetBSD: ncr53c400reg.h,v 1.1 2000/03/18 13:05:21 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: files.isa,v 1.97 2000/02/25 02:17:44 groo Exp $
|
||||
# $NetBSD: files.isa,v 1.98 2000/03/18 13:05:22 mycroft Exp $
|
||||
#
|
||||
# Config file and device description for machine-independent ISA code.
|
||||
# Included by ports that need it. Requires that the SCSI files be
|
||||
|
@ -220,8 +220,8 @@ file dev/isa/if_iy.c iy
|
|||
# the probe routine of this "recognizes" the iy. Probe after it.
|
||||
# NCR 5380-based boards
|
||||
device nca: scsi, ncr5380sbc
|
||||
attach nca at isa
|
||||
file dev/isa/nca.c nca
|
||||
attach nca at isa with nca_isa
|
||||
file dev/isa/nca_isa.c nca_isa
|
||||
|
||||
# AMD am7990 (Lance) -based boards
|
||||
# (BICC Isolan, NE2100, DEPCA)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: nca.c,v 1.3 1998/11/19 21:53:32 thorpej Exp $ */
|
||||
/* $NetBSD: nca_isa.c,v 1.1 2000/03/18 13:05:25 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
|
@ -80,8 +80,8 @@
|
|||
|
||||
#include <dev/ic/ncr5380reg.h>
|
||||
#include <dev/ic/ncr5380var.h>
|
||||
#include <dev/ic/ncr53c400reg.h>
|
||||
|
||||
#include <dev/isa/ncareg.h>
|
||||
#include <dev/isa/ncavar.h>
|
||||
|
||||
int nca_find __P((bus_space_tag_t, bus_space_handle_t, bus_size_t, struct nca_probe_data*));
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ncavar.h,v 1.3 1999/02/19 16:15:06 mycroft Exp $ */
|
||||
/* $NetBSD: nca_isavar.h,v 1.1 2000/03/18 13:05:25 mycroft Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
Loading…
Reference in New Issue