Added (commented out) ACPI attachment.
This commit is contained in:
parent
7b85ef4770
commit
dc27775f75
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user