diff options
author | bde <bde@FreeBSD.org> | 1995-12-06 23:52:35 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-12-06 23:52:35 +0000 |
commit | c0273b2f6435eb28e855bdccf8752c6bce096291 (patch) | |
tree | e151f335575aa8b8b1875c2cb148ac8d58baf799 /sys/i386/isa/seagate.c | |
parent | 369f41ad46df402995bdb9d0f3e2bf0534b3c81d (diff) | |
download | FreeBSD-src-c0273b2f6435eb28e855bdccf8752c6bce096291.zip FreeBSD-src-c0273b2f6435eb28e855bdccf8752c6bce096291.tar.gz |
Replaced #includes of <sys/user.h> by less gross headers, usually
<sys/vm.h>. Many device drivers need only the definition of vtophys()
from vm.
Added nearby #includes of <sys/conf.h> where appropriate.
Diffstat (limited to 'sys/i386/isa/seagate.c')
-rw-r--r-- | sys/i386/isa/seagate.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/i386/isa/seagate.c b/sys/i386/isa/seagate.c index 808a8ba..eaf6142 100644 --- a/sys/i386/isa/seagate.c +++ b/sys/i386/isa/seagate.c @@ -60,7 +60,7 @@ * that category, with the possible exception of scanners and * some of the older MO drives. * - * $Id: seagate.c,v 1.11 1995/09/19 18:55:17 bde Exp $ + * $Id: seagate.c,v 1.12 1995/11/04 17:07:44 bde Exp $ */ /* @@ -121,11 +121,12 @@ #include <sys/malloc.h> #include <sys/buf.h> #include <sys/proc.h> -#include <sys/user.h> #include <sys/devconf.h> #include <machine/clock.h> +#include <vm/vm.h> + #include <i386/isa/isa_device.h> #include <scsi/scsi_all.h> |