From bd959765721d23722c72ba9fddc4b0a6db6327b9 Mon Sep 17 00:00:00 2001 From: joerg Date: Fri, 9 Feb 2001 16:33:53 +0000 Subject: [PATCH] Unbreak EISA. The PCI-EISA bridge bus is named `eisab', not `isab'. This mistake seems to have been benign until very recently, probably until msmith's PCI code reshuffle which cleaned up a lot of things. Still, my AIC7770 doesn't work again, but it at least probes the EISA bus now. --- sys/dev/eisa/eisaconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/eisa/eisaconf.c b/sys/dev/eisa/eisaconf.c index d67b453e4017..ef65f4b28f62 100644 --- a/sys/dev/eisa/eisaconf.c +++ b/sys/dev/eisa/eisaconf.c @@ -621,5 +621,5 @@ static driver_t eisa_driver = { 1, /* no softc */ }; -DRIVER_MODULE(eisa, isab, eisa_driver, eisa_devclass, 0, 0); +DRIVER_MODULE(eisa, eisab, eisa_driver, eisa_devclass, 0, 0); DRIVER_MODULE(eisa, nexus, eisa_driver, eisa_devclass, 0, 0);