diff options
author | Marius Strobl <marius@FreeBSD.org> | 2004-07-09 23:12:22 +0000 |
---|---|---|
committer | Marius Strobl <marius@FreeBSD.org> | 2004-07-09 23:12:22 +0000 |
commit | 64e6e863ac0009bd024c244b559e6d977db73bf6 (patch) | |
tree | ef6a6e9343151683633890e82688a72a82c8284b /sys/sparc64/creator | |
parent | cf92b47413fa63962845acdadf8a1bf3e89cae86 (diff) | |
download | src-64e6e863ac0009bd024c244b559e6d977db73bf6.tar.gz src-64e6e863ac0009bd024c244b559e6d977db73bf6.zip |
- Add missing <sys/module.h>. [1]
- Remove unused includes.
- Sort includes.
Reported by: Pyun YongHyeon <yongari@kt-is.co.kr> [1]
Notes
Notes:
svn path=/head/; revision=131887
Diffstat (limited to 'sys/sparc64/creator')
-rw-r--r-- | sys/sparc64/creator/creator_upa.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sparc64/creator/creator_upa.c b/sys/sparc64/creator/creator_upa.c index 864f0b8f2c33..1541c8a65c0e 100644 --- a/sys/sparc64/creator/creator_upa.c +++ b/sys/sparc64/creator/creator_upa.c @@ -32,10 +32,12 @@ #include <sys/consio.h> #include <sys/conf.h> #include <sys/fbio.h> -#include <sys/interrupt.h> #include <sys/kernel.h> +#include <sys/module.h> + #include <machine/bus.h> #include <machine/resource.h> + #include <sys/rman.h> #include <dev/ofw/openfirm.h> |