diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-12-05 02:48:40 +0300 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-12-05 03:37:39 +0300 |
commit | f7746f0e1f271fbc64b57c29873c47f73e28e5a0 (patch) | |
tree | ee244eb2c964c907a896aa936eb8ab33b8fa263f /drivers/gpu/drm/i915/intel_display.c | |
parent | 1ec14ad3132702694f2e1a90b30641cf111183b9 (diff) | |
download | linux-f7746f0e1f271fbc64b57c29873c47f73e28e5a0.tar.xz |
drm/i915: Enable self-refresh for Ironlake
We disabled this a while ago as it was inexplicably broken. However, it
now appears to work...
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_display.c')
-rw-r--r-- | drivers/gpu/drm/i915/intel_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index 0b6272a2edfc..83446b55f731 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c @@ -3456,7 +3456,7 @@ static void ironlake_update_wm(struct drm_device *dev, * display plane is used. */ tmp = 0; - if (enabled == 1 && /* XXX disabled due to buggy implmentation? */ 0) { + if (enabled == 1) { unsigned long line_time_us; int small, large, plane_fbc; int sr_clock, entries; |