I don't think pc98 has acpi at all, so ifdef the acpi attachments for

now.
This commit is contained in:
Warner Losh 2001-09-15 00:03:32 +00:00
parent 54e1fea8cb
commit 4c1fc1b219
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83480
2 changed files with 4 additions and 2 deletions

View File

@ -1102,5 +1102,6 @@ static driver_t npxisa_driver = {
static devclass_t npxisa_devclass;
DRIVER_MODULE(npxisa, isa, npxisa_driver, npxisa_devclass, 0, 0);
#ifndef PC98
DRIVER_MODULE(npxisa, acpi, npxisa_driver, npxisa_devclass, 0, 0);
#endif

View File

@ -671,6 +671,7 @@ static driver_t atspeaker_driver = {
static devclass_t atspeaker_devclass;
DRIVER_MODULE(atspeaker, isa, atspeaker_driver, atspeaker_devclass, 0, 0);
#ifndef PC98
DRIVER_MODULE(atspeaker, acpi, atspeaker_driver, atspeaker_devclass, 0, 0);
#endif
/* spkr.c ends here */