diff options
author | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-09-04 09:24:23 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-09-04 09:24:23 +0800 |
commit | 121b9648f846d900e67818869974ee82046e9b25 (patch) | |
tree | 38ef1753cb910a1af564f591836e4c4ef679d057 /libdrm | |
parent | 73b59c894380995a2889b98e79acadd2da0bb237 (diff) |
libdrm_intel: add new pci ids
New ids for G41, Clarkdale and Arrandale.
Make sure we don't need to count fence also on new chips.
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Diffstat (limited to 'libdrm')
-rw-r--r-- | libdrm/intel/intel_chipset.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libdrm/intel/intel_chipset.h b/libdrm/intel/intel_chipset.h index 0b3af023..26bc5855 100644 --- a/libdrm/intel/intel_chipset.h +++ b/libdrm/intel/intel_chipset.h @@ -48,7 +48,10 @@ (dev)->pci_device == 0x2A42 || \ (dev)->pci_device == 0x2E02 || \ (dev)->pci_device == 0x2E12 || \ - (dev)->pci_device == 0x2E22) + (dev)->pci_device == 0x2E22 || \ + (dev)->pci_device == 0x2E32 || \ + (dev)->pci_device == 0x0042 || \ + (dev)->pci_device == 0x0046) #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02) |