diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-09-26 18:40:06 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-09-26 18:40:06 +0000 |
| commit | c1e309b38bf2ef698a07eba6b0013c0a06497fff (patch) | |
| tree | 216e9de26e7d6b63ed5a813d238027293b866f59 /sys/isa | |
| parent | 89147260d5d49e5a45870bde7a5b450bd6665567 (diff) | |
Notes
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 162d3751b34e..2d5a866aeece 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 |
