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/gnu | |
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/gnu')
-rw-r--r-- | sys/gnu/i386/isa/dgb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/gnu/i386/isa/dgb.c b/sys/gnu/i386/isa/dgb.c index b6e7079..fb46e28 100644 --- a/sys/gnu/i386/isa/dgb.c +++ b/sys/gnu/i386/isa/dgb.c @@ -1,5 +1,5 @@ /*- - * dgb.c $Id: dgb.c,v 1.6 1995/11/29 10:47:03 julian Exp $ + * dgb.c $Id: dgb.c,v 1.7 1995/11/29 14:39:06 julian Exp $ * * Digiboard driver. * @@ -32,7 +32,6 @@ #include <sys/ioctl.h> #include <sys/tty.h> #include <sys/proc.h> -#include <sys/user.h> #include <sys/conf.h> #include <sys/dkstat.h> #include <sys/file.h> @@ -44,6 +43,8 @@ #include <machine/clock.h> +#include <vm/vm.h> + #include <i386/isa/isa.h> #include <i386/isa/isa_device.h> |