Date: Mon, 16 Jun 2014 08:49:16 +0000 (UTC) From: Roger Pau Monné <royger@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r267535 - head/sys/x86/isa Message-ID: <201406160849.s5G8nGQ1075368@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: royger Date: Mon Jun 16 08:49:16 2014 New Revision: 267535 URL: http://svnweb.freebsd.org/changeset/base/267535 Log: 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. Modified: head/sys/x86/isa/isa.c Modified: head/sys/x86/isa/isa.c ============================================================================== --- head/sys/x86/isa/isa.c Mon Jun 16 08:48:42 2014 (r267534) +++ head/sys/x86/isa/isa.c Mon Jun 16 08:49:16 2014 (r267535) @@ -241,3 +241,8 @@ isa_release_resource(device_t bus, devic * 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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406160849.s5G8nGQ1075368>