diff options
author | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-09-07 16:17:04 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-09-07 16:17:04 +0800 |
commit | 67e4172394a88d4922fb8d9c7c3d96ce7e02c5a6 (patch) | |
tree | e419bbe446ccd6844b7945341d4fc1acd4a2547e | |
parent | 121b9648f846d900e67818869974ee82046e9b25 (diff) |
libdrm_intel: include B43 chipset check
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
-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 26bc5855..688476a4 100644 --- a/libdrm/intel/intel_chipset.h +++ b/libdrm/intel/intel_chipset.h @@ -50,6 +50,7 @@ (dev)->pci_device == 0x2E12 || \ (dev)->pci_device == 0x2E22 || \ (dev)->pci_device == 0x2E32 || \ + (dev)->pci_device == 0x2E42 || \ (dev)->pci_device == 0x0042 || \ (dev)->pci_device == 0x0046) @@ -59,7 +60,9 @@ #define IS_G4X(dev) ((dev)->pci_device == 0x2E02 || \ (dev)->pci_device == 0x2E12 || \ - (dev)->pci_device == 0x2E22) + (dev)->pci_device == 0x2E22 || \ + (dev)->pci_device == 0x2E32 || \ + (dev)->pci_device == 0x2E42) #define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \ (dev)->pci_device == 0x29B2 || \ |