summaryrefslogtreecommitdiffstats
path: root/sys/isa/isa_common.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2003-04-30 21:41:41 +0000
committerpeter <peter@FreeBSD.org>2003-04-30 21:41:41 +0000
commit342da96eab4d4bb56ee7b5e645a52c6251456921 (patch)
tree4b3421677447145c97e446877e9dd5b2743d93a7 /sys/isa/isa_common.c
parent4a196916ac6a4fdda3f3391042fce853ddd9e143 (diff)
downloadFreeBSD-src-342da96eab4d4bb56ee7b5e645a52c6251456921.zip
FreeBSD-src-342da96eab4d4bb56ee7b5e645a52c6251456921.tar.gz
Create a 'legacy' node for AMD64 as well as i386. While we'll never
have to use it since all AMD64 machines are supposed to have acpi etc, I'm using it during development so I can avoid the acpi code for now. Yes, this is cheating.
Diffstat (limited to 'sys/isa/isa_common.c')
-rw-r--r--sys/isa/isa_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/isa/isa_common.c b/sys/isa/isa_common.c
index bf7219e..eb9623a 100644
--- a/sys/isa/isa_common.c
+++ b/sys/isa/isa_common.c
@@ -1112,7 +1112,7 @@ static driver_t isa_driver = {
*/
DRIVER_MODULE(isa, isab, isa_driver, isa_devclass, 0, 0);
DRIVER_MODULE(isa, eisab, isa_driver, isa_devclass, 0, 0);
-#ifdef __i386__
+#if defined(__i386__) || defined(__amd64__)
DRIVER_MODULE(isa, legacy, isa_driver, isa_devclass, 0, 0);
#endif
MODULE_VERSION(isa, 1);
OpenPOWER on IntegriCloud