dect
/
linux-2.6
Archived
13
0
Fork 0

drm/i915: The sprite scaler on Ironlake also support YUV planes

This fixes a regression from

commit 57779d0636
Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
Date:   Wed Oct 31 17:50:14 2012 +0200

    drm/i915: Fix display pixel format handling

(which even says that they are supported on Ironlake, and then promptly
rejects then...)

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Chris Wilson 2012-12-18 22:13:13 +00:00 committed by Daniel Vetter
parent 901593f2bf
commit cc7ebb2892
1 changed files with 1 additions and 1 deletions

View File

@ -8637,7 +8637,7 @@ int intel_framebuffer_init(struct drm_device *dev,
case DRM_FORMAT_UYVY:
case DRM_FORMAT_YVYU:
case DRM_FORMAT_VYUY:
if (INTEL_INFO(dev)->gen < 6)
if (INTEL_INFO(dev)->gen < 5)
return -EINVAL;
break;
default: