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/scsi | |
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/scsi')
-rw-r--r-- | sys/i386/scsi/aic7xxx.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/i386/scsi/aic7xxx.c b/sys/i386/scsi/aic7xxx.c index 15c7b6b..9f92e8f 100644 --- a/sys/i386/scsi/aic7xxx.c +++ b/sys/i386/scsi/aic7xxx.c @@ -24,7 +24,7 @@ * * commenced: Sun Sep 27 18:14:01 PDT 1992 * - * $Id: aic7xxx.c,v 1.46 1995/11/07 05:32:47 gibbs Exp $ + * $Id: aic7xxx.c,v 1.47 1995/11/07 07:01:05 gibbs Exp $ */ /* * TODO: @@ -38,12 +38,17 @@ #include <sys/malloc.h> #include <sys/buf.h> #include <sys/proc.h> -#include <sys/user.h> + #include <scsi/scsi_all.h> #include <scsi/scsiconf.h> + #include <machine/clock.h> + +#include <vm/vm.h> + #include <i386/scsi/aic7xxx.h> #include <i386/scsi/93cx6.h> + #include <dev/aic7xxx/aic7xxx_reg.h> #define PAGESIZ 4096 |