]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/i915: fix mode set on load pipe. (v2)
authorDave Airlie <airlied@redhat.com>
Thu, 23 Feb 2012 15:33:40 +0000 (15:33 +0000)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Thu, 23 Feb 2012 16:06:31 +0000 (08:06 -0800)
Booted my i965 machine and it started printing the unsupported pixel
format of 0 message (once I added content to it).

Oh looksie here, we pass 0. fix.

v2: compile it.

Buzilla: https://bugs.freedesktop.org/show_bug.cgi?id=45966

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
drivers/gpu/drm/i915/intel_display.c

index f425b23e3803317f8088a7e2ffbb377e80cbd3f8..f3afec2854d8094fedfe093d02e6156b0fa4810a 100644 (file)
@@ -6561,7 +6561,7 @@ intel_framebuffer_create_for_mode(struct drm_device *dev,
        mode_cmd.height = mode->vdisplay;
        mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
                                                                bpp);
-       mode_cmd.pixel_format = 0;
+       mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
 
        return intel_framebuffer_create(dev, &mode_cmd, obj);
 }