summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2002-09-26 18:40:06 +0000
committerjhb <jhb@FreeBSD.org>2002-09-26 18:40:06 +0000
commite668d0b2f283996efa0ffa831d37e7f31c219e80 (patch)
tree216e9de26e7d6b63ed5a813d238027293b866f59 /sys/dev
parent0d4a968a497b20146fafdedf5ad2f9d040a62d58 (diff)
downloadFreeBSD-src-e668d0b2f283996efa0ffa831d37e7f31c219e80.zip
FreeBSD-src-e668d0b2f283996efa0ffa831d37e7f31c219e80.tar.gz
Argh, isa(4), eisa(4) and mca(4) now attach to legacy(4) instead of
nexus(4) in the case of machines w/o equivalent bridges on a PCI bus. Reported by: winter Pointy hat to: jhb
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/eisa/eisaconf.c2
-rw-r--r--sys/dev/mca/mca_bus.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/eisa/eisaconf.c b/sys/dev/eisa/eisaconf.c
index d8b5d8e..49d8d22 100644
--- a/sys/dev/eisa/eisaconf.c
+++ b/sys/dev/eisa/eisaconf.c
@@ -621,4 +621,4 @@ static driver_t eisa_driver = {
};
DRIVER_MODULE(eisa, eisab, eisa_driver, eisa_devclass, 0, 0);
-DRIVER_MODULE(eisa, nexus, eisa_driver, eisa_devclass, 0, 0);
+DRIVER_MODULE(eisa, legacy, eisa_driver, eisa_devclass, 0, 0);
diff --git a/sys/dev/mca/mca_bus.c b/sys/dev/mca/mca_bus.c
index 0400a44..2550dc1 100644
--- a/sys/dev/mca/mca_bus.c
+++ b/sys/dev/mca/mca_bus.c
@@ -538,4 +538,4 @@ static driver_t mca_driver = {
static devclass_t mca_devclass;
-DRIVER_MODULE(mca, nexus, mca_driver, mca_devclass, 0, 0);
+DRIVER_MODULE(mca, legacy, mca_driver, mca_devclass, 0, 0);
OpenPOWER on IntegriCloud