diff options
author | bde <bde@FreeBSD.org> | 1997-11-18 11:45:26 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-11-18 11:45:26 +0000 |
commit | 99365eb10b3d32ec41e083cad6e3198726bcd1d6 (patch) | |
tree | 4b02556cccda3eeecbff1c7e5d66a54f8ff3c59f | |
parent | dcdbeebf147c1d36d12636e5fe19bbefd9c3d0f3 (diff) | |
download | FreeBSD-src-99365eb10b3d32ec41e083cad6e3198726bcd1d6.zip FreeBSD-src-99365eb10b3d32ec41e083cad6e3198726bcd1d6.tar.gz |
Removed unused #includes.
Fixed #include order. <i386/isa/isa_device.h> will soon be a prerequisite
for <i386/isa/pnp.h>. Including both in alphebetical order gets this
right naturally.
-rw-r--r-- | sys/i386/isa/pnp.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/i386/isa/pnp.c b/sys/i386/isa/pnp.c index 7fbe195..3d4b4f1 100644 --- a/sys/i386/isa/pnp.c +++ b/sys/i386/isa/pnp.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pnp.c,v 1.2 1997/09/18 08:04:11 jmg Exp $ + * $Id: pnp.c,v 1.3 1997/09/19 15:20:24 jmg Exp $ */ #include <sys/param.h> @@ -32,13 +32,11 @@ #include <sys/malloc.h> #include <sys/interrupt.h> #include <machine/clock.h> -#include <machine/cpufunc.h> #include <machine/md_var.h> -#include <i386/isa/pnp.h> -#include <i386/isa/isa_device.h> -#include <i386/isa/isa.h> #include <i386/isa/icu.h> +#include <i386/isa/isa_device.h> +#include <i386/isa/pnp.h> int num_pnp_cards = 0; pnp_id pnp_devices[MAX_PNP_CARDS]; |