diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2008-04-11 12:12:25 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2008-04-11 12:12:25 +0000 |
commit | dc0aff276c299890940139c3b63e1b1f84a6b5e5 (patch) | |
tree | 90ca530da20839d393a31891a505262a70bb14bc /sys/dev/asmc | |
parent | 1d29dab18251001b511e0d4b77b92d4283f6c0e5 (diff) | |
download | FreeBSD-src-dc0aff276c299890940139c3b63e1b1f84a6b5e5.zip FreeBSD-src-dc0aff276c299890940139c3b63e1b1f84a6b5e5.tar.gz |
Style nit. No functional change.
Diffstat (limited to 'sys/dev/asmc')
-rw-r--r-- | sys/dev/asmc/asmc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/asmc/asmc.c b/sys/dev/asmc/asmc.c index aa06f71..ae39c3e 100644 --- a/sys/dev/asmc/asmc.c +++ b/sys/dev/asmc/asmc.c @@ -35,8 +35,6 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -#include "opt_intr_filter.h" - #include <sys/param.h> #include <sys/bus.h> #include <sys/conf.h> @@ -49,11 +47,14 @@ __FBSDID("$FreeBSD$"); #include <sys/systm.h> #include <sys/taskqueue.h> #include <sys/rman.h> + #include <machine/resource.h> #include <contrib/dev/acpica/acpi.h> #include <dev/acpica/acpivar.h> #include <dev/asmc/asmcvar.h> +#include "opt_intr_filter.h" + /* * Device interface. */ |