From e668d0b2f283996efa0ffa831d37e7f31c219e80 Mon Sep 17 00:00:00 2001 From: jhb Date: Thu, 26 Sep 2002 18:40:06 +0000 Subject: 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 --- sys/dev/eisa/eisaconf.c | 2 +- sys/dev/mca/mca_bus.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev') 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); -- cgit v1.1