diff options
author | jhb <jhb@FreeBSD.org> | 2002-09-26 18:40:06 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2002-09-26 18:40:06 +0000 |
commit | e668d0b2f283996efa0ffa831d37e7f31c219e80 (patch) | |
tree | 216e9de26e7d6b63ed5a813d238027293b866f59 /sys/dev/eisa | |
parent | 0d4a968a497b20146fafdedf5ad2f9d040a62d58 (diff) | |
download | FreeBSD-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/eisa')
-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 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); |