]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/commitdiff
drm: do not mask out DRM_FORMAT_BIG_ENDIAN
authorGerd Hoffmann <kraxel@redhat.com>
Wed, 5 Sep 2018 06:04:42 +0000 (08:04 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Thu, 6 Sep 2018 06:40:18 +0000 (08:40 +0200)
framebuffer_check() expects that drm_get_format_info() will not fail if
the __drm_format_info() call was successful.  That'll work only in case
both are called with the same pixel_format value, so masking out the
DRM_FORMAT_BIG_ENDIAN flag isn't a good idea.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20180905060445.15008-4-kraxel@redhat.com
drivers/gpu/drm/drm_framebuffer.c

index 17b7b8944de5674fad399603abf79e91bc7b52e3..888c4d53cf23ba7f9be180196a147b314e26f31f 100644 (file)
@@ -164,7 +164,7 @@ static int framebuffer_check(struct drm_device *dev,
        int i;
 
        /* check if the format is supported at all */
-       info = __drm_format_info(r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN);
+       info = __drm_format_info(r->pixel_format);
        if (!info) {
                struct drm_format_name_buf format_name;