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/isa | |
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/isa')
-rw-r--r-- | sys/isa/isa_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/isa/isa_common.c b/sys/isa/isa_common.c index 162d375..2d5a866 100644 --- a/sys/isa/isa_common.c +++ b/sys/isa/isa_common.c @@ -1105,10 +1105,10 @@ static driver_t isa_driver = { }; /* - * ISA can be attached to a PCI-ISA bridge or directly to the nexus. + * ISA can be attached to a PCI-ISA bridge or directly to the legacy device. */ DRIVER_MODULE(isa, isab, isa_driver, isa_devclass, 0, 0); DRIVER_MODULE(isa, eisab, isa_driver, isa_devclass, 0, 0); #ifdef __i386__ -DRIVER_MODULE(isa, nexus, isa_driver, isa_devclass, 0, 0); +DRIVER_MODULE(isa, legacy, isa_driver, isa_devclass, 0, 0); #endif |