diff options
author | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-01-09 11:30:35 +0800 |
---|---|---|
committer | Kristian Høgsberg <krh@redhat.com> | 2008-01-15 13:06:09 -0500 |
commit | ac6b3780c816f81c8159ff5ba07a77563e26a1c5 (patch) | |
tree | 38569a52d20653be1eb3de10b1b016dfca3dfd85 /linux-core | |
parent | 88c511e49dce869d1c4e3271bf642cbb22fef0cf (diff) |
i915: Add chipset id for Intel Integrated Graphics Device
This adds new chipset id in drm.
Signed-off-by: Zhenyu Wang <zhenyu.z.wang@intel.com>
Diffstat (limited to 'linux-core')
-rw-r--r-- | linux-core/i915_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/i915_drv.c b/linux-core/i915_drv.c index d3a4ab35..a8ce0f5e 100644 --- a/linux-core/i915_drv.c +++ b/linux-core/i915_drv.c @@ -330,7 +330,7 @@ static int i915_suspend(struct drm_device *dev) dev_priv->saveDSPBSIZE = I915_READ(DSPBSIZE); dev_priv->saveDSPBPOS = I915_READ(DSPBPOS); dev_priv->saveDSPBBASE = I915_READ(DSPBBASE); - if (IS_I965GM(dev)) { + if (IS_I965GM(dev) || IS_IGD_GM(dev)) { dev_priv->saveDSPBSURF = I915_READ(DSPBSURF); dev_priv->saveDSPBTILEOFF = I915_READ(DSPBTILEOFF); } |