diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-09-10 21:46:45 +0400 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-09-11 01:23:45 +0400 |
commit | 4d12fe0b4864682d3562021cde0f32961c655d75 (patch) | |
tree | d9e335a04f4d8e0b97ac2d4b795b572d1e309205 /drivers/gpu/drm/i915/intel_dp.c | |
parent | 0b8765c6e7fb6e0aaa9b9081454fb0f202852523 (diff) | |
download | linux-4d12fe0b4864682d3562021cde0f32961c655d75.tar.xz |
drm/i915: don't unlock panel regs
This was just a workaround for some broken Ironlake CRTC code.
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_dp.c')
-rw-r--r-- | drivers/gpu/drm/i915/intel_dp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c index b9efeaf5d5b4..103a60b3cad4 100644 --- a/drivers/gpu/drm/i915/intel_dp.c +++ b/drivers/gpu/drm/i915/intel_dp.c @@ -781,7 +781,7 @@ static bool ironlake_edp_panel_on (struct drm_device *dev) I915_WRITE(PCH_PP_CONTROL, pp); POSTING_READ(PCH_PP_CONTROL); - pp |= PANEL_UNLOCK_REGS | POWER_TARGET_ON; + pp |= POWER_TARGET_ON; I915_WRITE(PCH_PP_CONTROL, pp); if (wait_for(I915_READ(PCH_PP_STATUS) & PP_ON, 5000)) |