From: Jesse Barnes Date: Wed, 7 Mar 2012 16:49:29 +0000 (-0800) Subject: drm/i915: support 32 bit BGR formats in sprite planes X-Git-Tag: firefly_0821_release~3680^2~3372^2~1^2 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b250da79a0c972ef7f6d58ebd1083cab066e6c82;p=firefly-linux-kernel-4.4.55.git drm/i915: support 32 bit BGR formats in sprite planes intel_framebuffer_init does some basic sanity checking of the pixel format, but is used by the plane code in addition to the primary crtc. So it needs to contain any formats used in either place. Add the XBGR8888 format to the checklist so the plane code can use it. Signed-off-by: Jesse Barnes Signed-off-by: Keith Packard --- diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index f851db7be2cc..397087cf689e 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c @@ -7828,6 +7828,7 @@ int intel_framebuffer_init(struct drm_device *dev, case DRM_FORMAT_RGB332: case DRM_FORMAT_RGB565: case DRM_FORMAT_XRGB8888: + case DRM_FORMAT_XBGR8888: case DRM_FORMAT_ARGB8888: case DRM_FORMAT_XRGB2101010: case DRM_FORMAT_ARGB2101010: