Added (commented out) ACPI attachment.

This commit is contained in:
Yoshihiro Takahashi 2001-09-16 05:28:16 +00:00
parent 7b85ef4770
commit dc27775f75
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83535
6 changed files with 18 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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