diff options
author | bde <bde@FreeBSD.org> | 2001-10-21 06:05:08 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-10-21 06:05:08 +0000 |
commit | df59c79af7326b9c53eaa09bc986ed6b3d9fba6c (patch) | |
tree | 60f2b88ab0a3f72089136c928dffaa78be67e357 /sys/i386/isa/npx.c | |
parent | 23731f7ff266e61bb93845bf634caaf3b09ca709 (diff) | |
download | FreeBSD-src-df59c79af7326b9c53eaa09bc986ed6b3d9fba6c.zip FreeBSD-src-df59c79af7326b9c53eaa09bc986ed6b3d9fba6c.tar.gz |
MFi386:
- sys/pc98/pc98/npx.c 1.87 (2001/09/15; author: imp)
I don't think pc98 has acpi at all, so ifdef the acpi attachments for
now.
This completes merging sys/pc98/pc98/npx.c into sys/i386/isa/npx.c so
that the former can be removed.
Diffstat (limited to 'sys/i386/isa/npx.c')
-rw-r--r-- | sys/i386/isa/npx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/i386/isa/npx.c b/sys/i386/isa/npx.c index 1807ba9..1238d67 100644 --- a/sys/i386/isa/npx.c +++ b/sys/i386/isa/npx.c @@ -997,5 +997,7 @@ 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 |