diff options
author | Dave Airlie <airlied@redhat.com> | 2009-07-28 14:19:24 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-07-28 14:19:24 +1000 |
commit | 0a168401c401727e49a12cae43a6a387b1f2928d (patch) | |
tree | 14009cae14ca6fe298933516c98e5d57344ddf8d /hw | |
parent | b3751454cbe02ee952bab213e8c3684d429c41b3 (diff) |
pci: add support for pci is boot vga call.
This allows us to ask the kernel for the boot VGA device
instead of nasty guessing.
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xfree86/common/xf86pciBus.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/xfree86/common/xf86pciBus.c b/hw/xfree86/common/xf86pciBus.c index 9a9ae4091..27e238a4d 100644 --- a/hw/xfree86/common/xf86pciBus.c +++ b/hw/xfree86/common/xf86pciBus.c @@ -371,6 +371,12 @@ xf86PciProbe(void) xf86PciVideoInfo[num - 1] = info; pci_device_probe(info); +#ifdef HAVE_PCI_DEVICE_IS_BOOT_VGA + if (pci_device_is_boot_vga(info)) { + primaryBus.type = BUS_PCI; + primaryBus.id.pci = info; + } +#endif info->user_data = 0; } } |