1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

It's possible for an ISA bus to be hung off an EISA bridge, so we need to

reflect that here.
This commit is contained in:
Mike Smith 2000-12-12 23:33:29 +00:00
parent 93480bce7c
commit 5aea03b06b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=69942

View File

@ -1025,6 +1025,7 @@ static driver_t isa_driver = {
* ISA can be attached to a PCI-ISA bridge or directly to the nexus.
*/
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);
#endif