diff options
author | Adam Jackson <ajax@redhat.com> | 2008-02-15 14:46:25 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-02-15 14:46:25 -0500 |
commit | 39bcbe0921e8a31b55ebee8726d2091fc5e0dd22 (patch) | |
tree | e88917bc8f83a6e9433323d540d4ceb5765db646 /src/mesa/drivers/dri/intel | |
parent | 66611f2298539fa28a3667c02ca4013602634d3d (diff) |
Add E7221 variant to i915.
Diffstat (limited to 'src/mesa/drivers/dri/intel')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_chipset.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_chipset.h b/src/mesa/drivers/dri/intel/intel_chipset.h index 5f094dc5fb..168dc724db 100644 --- a/src/mesa/drivers/dri/intel/intel_chipset.h +++ b/src/mesa/drivers/dri/intel/intel_chipset.h @@ -36,6 +36,7 @@ #define PCI_CHIP_I865_G 0x2572 #define PCI_CHIP_I915_G 0x2582 +#define PCI_CHIP_E7221_G 0x258A #define PCI_CHIP_I915_GM 0x2592 #define PCI_CHIP_I945_G 0x2772 #define PCI_CHIP_I945_GM 0x27A2 @@ -73,6 +74,7 @@ IS_IGD(devid)) #define IS_9XX(devid) (devid == PCI_CHIP_I915_G || \ + devid == PCI_CHIP_E7221_G || \ devid == PCI_CHIP_I915_GM || \ devid == PCI_CHIP_I945_G || \ devid == PCI_CHIP_I945_GM || \ |