aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fdc
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2004-07-13 02:42:23 +0000
committerWarner Losh <imp@FreeBSD.org>2004-07-13 02:42:23 +0000
commitc3ae4c40ef8189c76b2b2801972a44b6dc0f5957 (patch)
tree37d8bd4aa45d8012f95ac597e2ba31452cf5dfe7 /sys/dev/fdc
parente79a88db7276fbba1d695c427e17821c85fd98af (diff)
downloadsrc-c3ae4c40ef8189c76b2b2801972a44b6dc0f5957.tar.gz
src-c3ae4c40ef8189c76b2b2801972a44b6dc0f5957.zip
Don't depend on implicit include of machine/bus.h in sys/rman.h, but instead
explicitly include it.
Notes
Notes: svn path=/head/; revision=132080
Diffstat (limited to 'sys/dev/fdc')
-rw-r--r--sys/dev/fdc/fdc.c1
-rw-r--r--sys/dev/fdc/fdc_isa.c2
-rw-r--r--sys/dev/fdc/fdc_pccard.c2
3 files changed, 5 insertions, 0 deletions
diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c
index 9415f5de12e1..33f9ce42a5cd 100644
--- a/sys/dev/fdc/fdc.c
+++ b/sys/dev/fdc/fdc.c
@@ -70,6 +70,7 @@ __FBSDID("$FreeBSD$");
#include <sys/rman.h>
#include <sys/systm.h>
+#include <machine/bus.h>
#include <machine/clock.h>
#include <machine/stdarg.h>
diff --git a/sys/dev/fdc/fdc_isa.c b/sys/dev/fdc/fdc_isa.c
index 9880423b8a64..6a4fd89196f4 100644
--- a/sys/dev/fdc/fdc_isa.c
+++ b/sys/dev/fdc/fdc_isa.c
@@ -37,6 +37,8 @@ __FBSDID("$FreeBSD$");
#include <sys/rman.h>
#include <sys/systm.h>
+#include <machine/bus.h>
+
#include <dev/fdc/fdcvar.h>
#include <dev/fdc/fdcreg.h>
diff --git a/sys/dev/fdc/fdc_pccard.c b/sys/dev/fdc/fdc_pccard.c
index 5e186c6c72fd..c3cd334dfd92 100644
--- a/sys/dev/fdc/fdc_pccard.c
+++ b/sys/dev/fdc/fdc_pccard.c
@@ -37,6 +37,8 @@ __FBSDID("$FreeBSD$");
#include <sys/rman.h>
#include <sys/systm.h>
+#include <machine/bus.h>
+
#include <dev/fdc/fdcvar.h>
#include <dev/fdc/fdcreg.h>