isa: allow ISA bus to attach to xenpv bus

This is needed because syscons depends on ISA.

Sponsored by: Citrix Systems R&D
Approved by: gibbs

x86/isa/isa.c:
 - Allow the ISA bus to attach to xenpv.
This commit is contained in:
royger 2014-06-16 08:49:16 +00:00
parent f013e4ff53
commit 152e3229be

View File

@ -241,3 +241,8 @@ isa_release_resource(device_t bus, device_t child, int type, int rid,
* On this platform, isa can also attach to the legacy bus.
*/
DRIVER_MODULE(isa, legacy, isa_driver, isa_devclass, 0, 0);
/*
* Attach the ISA bus to the xenpv bus in order to get syscons.
*/
DRIVER_MODULE(isa, xenpv, isa_driver, isa_devclass, 0, 0);