From 5aea03b06b32402c2b6586aa582ce0db4932c114 Mon Sep 17 00:00:00 2001 From: Mike Smith Date: Tue, 12 Dec 2000 23:33:29 +0000 Subject: [PATCH] It's possible for an ISA bus to be hung off an EISA bridge, so we need to reflect that here. --- sys/isa/isa_common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/isa/isa_common.c b/sys/isa/isa_common.c index 9a761cf0c3bb..ff0d94cea69c 100644 --- a/sys/isa/isa_common.c +++ b/sys/isa/isa_common.c @@ -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