diff options
author | Michel Dänzer <daenzer@vmware.com> | 2009-04-23 13:19:56 +0100 |
---|---|---|
committer | Michel Dänzer <daenzer@vmware.com> | 2009-04-23 13:19:56 +0100 |
commit | e0da812c5bdb7ffdd3450f614a4b73e44cd7feca (patch) | |
tree | 295e7ca36ced36e3b498f3ce0bae3065d02cda9d /src | |
parent | 13cb8264d81f09ce046c73fd751596572d13512e (diff) |
gallium: Make the intel xorg winsys start up with any Intel chipset.
For unsupported devices the screen/context creation should fail cleanly later
on.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/winsys/drm/intel/xorg/intel_xorg.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/gallium/winsys/drm/intel/xorg/intel_xorg.c b/src/gallium/winsys/drm/intel/xorg/intel_xorg.c index aea39247e5..46a7971f60 100644 --- a/src/gallium/winsys/drm/intel/xorg/intel_xorg.c +++ b/src/gallium/winsys/drm/intel/xorg/intel_xorg.c @@ -37,20 +37,17 @@ static Bool intel_xorg_pci_probe(DriverPtr driver, intptr_t match_data); static const struct pci_id_match intel_xorg_device_match[] = { - {0x8086, 0x2592, 0xffff, 0xffff, 0, 0, 0}, - {0x8086, 0x27A2, 0xffff, 0xffff, 0, 0, 0}, + {0x8086, PCI_MATCH_ANY, PCI_MATCH_ANY, PCI_MATCH_ANY, 0, 0, 0}, {0, 0, 0}, }; static SymTabRec intel_xorg_chipsets[] = { - {0x2592, "Intel Graphics Device"}, - {0x27A2, "Intel Graphics Device"}, + {PCI_MATCH_ANY, "Intel Graphics Device"}, {-1, NULL} }; static PciChipsets intel_xorg_pci_devices[] = { - {0x2592, 0x2592, RES_SHARED_VGA}, - {0x27A2, 0x27A2, RES_SHARED_VGA}, + {PCI_MATCH_ANY, PCI_MATCH_ANY, RES_SHARED_VGA}, {-1, -1, RES_UNDEFINED} }; |