diff options
| author | Li Peng <[email protected]> | 2010-01-21 18:45:46 +0800 |
|---|---|---|
| committer | Eric Anholt <[email protected]> | 2010-01-25 09:23:13 -0800 |
| commit | 8a6c77d645d9111f7bc01f908464301f5c3e0a05 (patch) | |
| tree | aa29229fb63887bae1ded9975ed3adb15bf83e9b | |
| parent | c062df61966405b0be6743bfb0cf300dca2fa7c2 (diff) | |
drm/i915: Fix the device info of Pineview
Pineview doesn't has CXSR and need GTT-based hardware status page.
It fixes a X boot hung issue on Pinview since commit cfdf1f
Signed-off-by: Li Peng <[email protected]>
Acked-by: Zhao Yakui <[email protected]>
Signed-off-by: Eric Anholt <[email protected]>
| -rw-r--r-- | drivers/gpu/drm/i915/i915_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c index 46d88965852a..ecac882e1d54 100644 --- a/drivers/gpu/drm/i915/i915_drv.c +++ b/drivers/gpu/drm/i915/i915_drv.c @@ -120,7 +120,7 @@ const static struct intel_device_info intel_gm45_info = { const static struct intel_device_info intel_pineview_info = { .is_g33 = 1, .is_pineview = 1, .is_mobile = 1, .is_i9xx = 1, - .has_pipe_cxsr = 1, + .need_gfx_hws = 1, .has_hotplug = 1, }; |