aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorYoshihiro Takahashi <nyan@FreeBSD.org>2001-09-16 05:28:16 +0000
committerYoshihiro Takahashi <nyan@FreeBSD.org>2001-09-16 05:28:16 +0000
commitdc27775f75194dd2f2605395db21ffb7a84cfead (patch)
tree76431ee8ecb7b15f58d098edcdc687e0489a564e /sys
parent7b85ef4770765e0e79b769866519b54503117f71 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/pc98/cbus/cbus_dma.c3
-rw-r--r--sys/pc98/cbus/fdc.c3
-rw-r--r--sys/pc98/cbus/ppc.c3
-rw-r--r--sys/pc98/pc98/fd.c3
-rw-r--r--sys/pc98/pc98/isa_dma.c3
-rw-r--r--sys/pc98/pc98/ppc.c3
6 files changed, 18 insertions, 0 deletions
diff --git a/sys/pc98/cbus/cbus_dma.c b/sys/pc98/cbus/cbus_dma.c
index 7618b9743c7c..987aa37a29f2 100644
--- a/sys/pc98/cbus/cbus_dma.c
+++ b/sys/pc98/cbus/cbus_dma.c
@@ -620,3 +620,6 @@ static driver_t atdma_driver = {
static devclass_t atdma_devclass;
DRIVER_MODULE(atdma, isa, atdma_driver, atdma_devclass, 0, 0);
+#ifndef PC98
+DRIVER_MODULE(atdma, acpi, atdma_driver, atdma_devclass, 0, 0);
+#endif
diff --git a/sys/pc98/cbus/fdc.c b/sys/pc98/cbus/fdc.c
index 2d9eb1b68363..bbf8b37a54a4 100644
--- a/sys/pc98/cbus/fdc.c
+++ b/sys/pc98/cbus/fdc.c
@@ -1281,6 +1281,9 @@ static driver_t fdc_driver = {
};
DRIVER_MODULE(fdc, isa, fdc_driver, fdc_devclass, 0, 0);
+#ifndef PC98
+DRIVER_MODULE(fdc, acpi, fdc_driver, fdc_devclass, 0, 0);
+#endif
#if NCARD > 0
diff --git a/sys/pc98/cbus/ppc.c b/sys/pc98/cbus/ppc.c
index d5badd1bbc5f..29d8bc45d2d4 100644
--- a/sys/pc98/cbus/ppc.c
+++ b/sys/pc98/cbus/ppc.c
@@ -2217,3 +2217,6 @@ ppc_teardown_intr(device_t bus, device_t child, struct resource *r, void *ih)
}
DRIVER_MODULE(ppc, isa, ppc_driver, ppc_devclass, 0, 0);
+#ifndef PC98
+DRIVER_MODULE(ppc, acpi, ppc_driver, ppc_devclass, 0, 0);
+#endif
diff --git a/sys/pc98/pc98/fd.c b/sys/pc98/pc98/fd.c
index 2d9eb1b68363..bbf8b37a54a4 100644
--- a/sys/pc98/pc98/fd.c
+++ b/sys/pc98/pc98/fd.c
@@ -1281,6 +1281,9 @@ static driver_t fdc_driver = {
};
DRIVER_MODULE(fdc, isa, fdc_driver, fdc_devclass, 0, 0);
+#ifndef PC98
+DRIVER_MODULE(fdc, acpi, fdc_driver, fdc_devclass, 0, 0);
+#endif
#if NCARD > 0
diff --git a/sys/pc98/pc98/isa_dma.c b/sys/pc98/pc98/isa_dma.c
index 7618b9743c7c..987aa37a29f2 100644
--- a/sys/pc98/pc98/isa_dma.c
+++ b/sys/pc98/pc98/isa_dma.c
@@ -620,3 +620,6 @@ static driver_t atdma_driver = {
static devclass_t atdma_devclass;
DRIVER_MODULE(atdma, isa, atdma_driver, atdma_devclass, 0, 0);
+#ifndef PC98
+DRIVER_MODULE(atdma, acpi, atdma_driver, atdma_devclass, 0, 0);
+#endif
diff --git a/sys/pc98/pc98/ppc.c b/sys/pc98/pc98/ppc.c
index d5badd1bbc5f..29d8bc45d2d4 100644
--- a/sys/pc98/pc98/ppc.c
+++ b/sys/pc98/pc98/ppc.c
@@ -2217,3 +2217,6 @@ ppc_teardown_intr(device_t bus, device_t child, struct resource *r, void *ih)
}
DRIVER_MODULE(ppc, isa, ppc_driver, ppc_devclass, 0, 0);
+#ifndef PC98
+DRIVER_MODULE(ppc, acpi, ppc_driver, ppc_devclass, 0, 0);
+#endif