diff options
| author | Warner Losh <imp@FreeBSD.org> | 2004-05-27 03:49:45 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2004-05-27 03:49:45 +0000 |
| commit | 2e31e339d14cb2dbcd32c3747ee7589160cd60cf (patch) | |
| tree | 03c5a44a01738f0202b18c0c101b670a5d3fb47c /sys/dev/ncv | |
| parent | 54c9d8aabc9eedb3677747ae4846b391156983ad (diff) | |
Notes
Diffstat (limited to 'sys/dev/ncv')
| -rw-r--r-- | sys/dev/ncv/ncr53c500_pccard.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/sys/dev/ncv/ncr53c500_pccard.c b/sys/dev/ncv/ncr53c500_pccard.c index 627f1aab89cce..1e97372aa263a 100644 --- a/sys/dev/ncv/ncr53c500_pccard.c +++ b/sys/dev/ncv/ncr53c500_pccard.c @@ -40,17 +40,19 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> -#include <sys/systm.h> -#include <sys/malloc.h> #include <sys/errno.h> +#include <sys/kernel.h> +#include <sys/malloc.h> +#include <sys/systm.h> #include <machine/bus.h> #include <machine/bus_pio.h> +#include <machine/resource.h> +#include <sys/rman.h> #include <compat/netbsd/dvcfg.h> #include <sys/device_port.h> -#include "pccarddevs.h" #include <dev/pccard/pccardvar.h> #include <cam/scsi/scsi_low.h> @@ -63,13 +65,8 @@ __FBSDID("$FreeBSD$"); #define KME_KXLC004_01 0x100 #define OFFSET_KME_KXLC004_01 0x10 -#include <sys/kernel.h> -#include <sys/module.h> -#if !defined(__FreeBSD__) || __FreeBSD_version < 500014 -#include <sys/select.h> -#endif -#include <pccard/cardinfo.h> -#include <pccard/slot.h> + +#include "pccarddevs.h" static int ncvprobe(DEVPORT_PDEVICE devi); static int ncvattach(DEVPORT_PDEVICE devi); |
