drm: vc4-firmware-kms: Fix DSI display support
authorDave Stevenson <dave.stevenson@raspberrypi.org>
Thu, 16 May 2019 16:49:42 +0000 (17:49 +0100)
committerpopcornmix <popcornmix@gmail.com>
Thu, 13 Jun 2019 10:54:31 +0000 (11:54 +0100)
The mode was incorrectly listed as interlaced, which was then
rejected.
Correct this and FKMS works with the DSI display.

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
drivers/gpu/drm/vc4/vc4_firmware_kms.c

index 30379c3..42ce833 100644 (file)
@@ -1003,7 +1003,7 @@ static const struct drm_display_mode lcd_mode = {
                 25979400 / 1000,
                 800, 800 + 1, 800 + 1 + 2, 800 + 1 + 2 + 46, 0,
                 480, 480 + 7, 480 + 7 + 2, 480 + 7 + 2 + 21, 0,
-                DRM_MODE_FLAG_INTERLACE)
+                0)
 };
 
 static int vc4_fkms_lcd_connector_get_modes(struct drm_connector *connector)