diff options
author | marius <marius@FreeBSD.org> | 2004-07-09 23:12:22 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2004-07-09 23:12:22 +0000 |
commit | 8526267db84218fbc82e517c5ae4cc9e986b11b8 (patch) | |
tree | ef6a6e9343151683633890e82688a72a82c8284b /sys/dev/fb | |
parent | 68b0bdace1f7c3fc38bd2510cdffadd6a53e97d7 (diff) | |
download | FreeBSD-src-8526267db84218fbc82e517c5ae4cc9e986b11b8.zip FreeBSD-src-8526267db84218fbc82e517c5ae4cc9e986b11b8.tar.gz |
- Add missing <sys/module.h>. [1]
- Remove unused includes.
- Sort includes.
Reported by: Pyun YongHyeon <yongari@kt-is.co.kr> [1]
Diffstat (limited to 'sys/dev/fb')
-rw-r--r-- | sys/dev/fb/creator.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/dev/fb/creator.c b/sys/dev/fb/creator.c index 172a341..00cf414 100644 --- a/sys/dev/fb/creator.c +++ b/sys/dev/fb/creator.c @@ -29,14 +29,10 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/bus.h> -#include <sys/kernel.h> -#include <sys/conf.h> -#include <sys/cons.h> -#include <sys/proc.h> -#include <sys/fcntl.h> -#include <sys/malloc.h> #include <sys/fbio.h> #include <sys/consio.h> +#include <sys/kernel.h> +#include <sys/module.h> #include <machine/bus.h> #include <machine/ofw_upa.h> |