diff options
author | joerg <joerg@FreeBSD.org> | 2001-02-09 16:33:53 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 2001-02-09 16:33:53 +0000 |
commit | bd959765721d23722c72ba9fddc4b0a6db6327b9 (patch) | |
tree | 08357b1d1e09c036e74782e5088af740a9b6c256 /sys/dev | |
parent | cba738d96fd5f7413323c90b9486f85d91079d1f (diff) | |
download | FreeBSD-src-bd959765721d23722c72ba9fddc4b0a6db6327b9.zip FreeBSD-src-bd959765721d23722c72ba9fddc4b0a6db6327b9.tar.gz |
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.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/eisa/eisaconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/eisa/eisaconf.c b/sys/dev/eisa/eisaconf.c index d67b453..ef65f4b 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); |