diff options
author | wollman <wollman@FreeBSD.org> | 2001-01-09 04:33:49 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2001-01-09 04:33:49 +0000 |
commit | 70c88bb8dad8043bc6de6c2381c0f3d55e803379 (patch) | |
tree | db08626bdde4f7fc600087db865a131d6da00a65 /sys/pccard | |
parent | 73868ac960ac5a7e40b0f6c9fe5956281809d520 (diff) | |
download | FreeBSD-src-70c88bb8dad8043bc6de6c2381c0f3d55e803379.zip FreeBSD-src-70c88bb8dad8043bc6de6c2381c0f3d55e803379.tar.gz |
select() DKI is now in <sys/selinfo.h>.
Diffstat (limited to 'sys/pccard')
-rw-r--r-- | sys/pccard/pccard.c | 1 | ||||
-rw-r--r-- | sys/pccard/pccard_nbk.c | 1 | ||||
-rw-r--r-- | sys/pccard/pcic.c | 2 | ||||
-rw-r--r-- | sys/pccard/slot.h | 2 |
4 files changed, 2 insertions, 4 deletions
diff --git a/sys/pccard/pccard.c b/sys/pccard/pccard.c index 27f7af2..62f0f73 100644 --- a/sys/pccard/pccard.c +++ b/sys/pccard/pccard.c @@ -37,7 +37,6 @@ #include <sys/systm.h> #include <sys/kernel.h> #include <sys/malloc.h> -#include <sys/select.h> #include <sys/sysctl.h> #include <sys/conf.h> #include <sys/uio.h> diff --git a/sys/pccard/pccard_nbk.c b/sys/pccard/pccard_nbk.c index 40cb7d8..c610a8b 100644 --- a/sys/pccard/pccard_nbk.c +++ b/sys/pccard/pccard_nbk.c @@ -54,7 +54,6 @@ #include <sys/module.h> #include <sys/kernel.h> #include <sys/queue.h> -#include <sys/select.h> #include <sys/types.h> #include <sys/bus.h> diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index 4cc58cb..df54688 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -35,8 +35,6 @@ #include <sys/systm.h> #include <sys/kernel.h> #include <sys/module.h> -#include <sys/select.h> - #include <pccard/i82365.h> #include <pccard/cardinfo.h> diff --git a/sys/pccard/slot.h b/sys/pccard/slot.h index 6221b4c..edd1400 100644 --- a/sys/pccard/slot.h +++ b/sys/pccard/slot.h @@ -47,6 +47,8 @@ #include <sys/rman.h> #include <machine/resource.h> +#include <sys/selinfo.h> + /* * Controller data - Specific to each slot controller. */ |