diff options
author | imp <imp@FreeBSD.org> | 2004-05-27 03:49:45 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2004-05-27 03:49:45 +0000 |
commit | 5f2befc69afb945e4cfd4be27ee1ebcaa57e32c6 (patch) | |
tree | 03c5a44a01738f0202b18c0c101b670a5d3fb47c /sys/dev/sio | |
parent | ab185f085d5b6e04f5f08fa62e0571a18f1870cc (diff) | |
download | FreeBSD-src-5f2befc69afb945e4cfd4be27ee1ebcaa57e32c6.zip FreeBSD-src-5f2befc69afb945e4cfd4be27ee1ebcaa57e32c6.tar.gz |
Fix disordering of pccarddevs.h noticed by bde. Also remove a few
redundant includes and fix some of the include disordering.
Submitted by: bde
Diffstat (limited to 'sys/dev/sio')
-rw-r--r-- | sys/dev/sio/sio_pccard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sio/sio_pccard.c b/sys/dev/sio/sio_pccard.c index a666073..cafb143 100644 --- a/sys/dev/sio/sio_pccard.c +++ b/sys/dev/sio/sio_pccard.c @@ -41,12 +41,12 @@ __FBSDID("$FreeBSD$"); #include <sys/timepps.h> #include <dev/pccard/pccard_cis.h> -#include "pccarddevs.h" -#include <dev/pccard/pccardreg.h> #include <dev/pccard/pccardvar.h> #include <dev/sio/siovar.h> +#include "pccarddevs.h" + static int sio_pccard_attach(device_t dev); static int sio_pccard_match(device_t self); static int sio_pccard_probe(device_t dev); |