1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

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:
Roger Pau Monné 2014-06-16 08:49:16 +00:00
parent a8f2f559f3
commit 79cd455edb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=267535

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);