diff options
author | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2007-11-06 17:59:14 +1100 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-11-06 17:59:14 +1100 |
commit | 81b7f9b71c45fc621e0b5770062aedf5ae5e57ee (patch) | |
tree | 2c54c953cb495db0d17cfe8fc9489e6ca257af9c | |
parent | b437c8ca0fe62a43661a31a3010284926d20f209 (diff) |
[PATCH] i915: fix missing G33 detect in IS_I9XX
G33 detect seems missing with Jesse's suspend/resume patch.
-rw-r--r-- | shared-core/i915_drv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-core/i915_drv.h b/shared-core/i915_drv.h index 91d4ac0f..c66b0651 100644 --- a/shared-core/i915_drv.h +++ b/shared-core/i915_drv.h @@ -1173,7 +1173,7 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); (dev)->pci_device == 0x29D2) #define IS_I9XX(dev) (IS_I915G(dev) || IS_I915GM(dev) || IS_I945G(dev) || \ - IS_I945GM(dev) || IS_I965G(dev)) + IS_I945GM(dev) || IS_I965G(dev) || IS_G33(dev)) #define IS_MOBILE(dev) (IS_I830(dev) || IS_I85X(dev) || IS_I915GM(dev) || \ IS_I945GM(dev) || IS_I965GM(dev)) |