From 30c6d7ab92d9384ee258d9aae0766244e44d2646 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Thu, 20 Jul 2017 20:29:43 +1000 Subject: [PATCH] drm/panel: simple: Fix width and height for Olimex LCD-OLinuXino-4.3TS The physical size of the panel is 105.5 (W) x 67.2 (H) x 4.05 (D) mm but the active display area is 95.04 (W) x 53.856 (H) mm. The width and height should be set to the active display area. Signed-off-by: Jonathan Liu Fixes: cf5c9e6dc70d ("drm/panel: simple: Add timings for the Olimex LCD-OLinuXino-4.3TS") Reviewed-by: Chen-Yu Tsai Signed-off-by: Thierry Reding Link: https://patchwork.freedesktop.org/patch/msgid/20170720102943.25091-1-net147@gmail.com --- drivers/gpu/drm/panel/panel-simple.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c index 9469c4d72a42..b441bd6ed4ad 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -1523,8 +1523,8 @@ static const struct panel_desc olimex_lcd_olinuxino_43ts = { .modes = &olimex_lcd_olinuxino_43ts_mode, .num_modes = 1, .size = { - .width = 105, - .height = 67, + .width = 95, + .height = 54, }, .bus_format = MEDIA_BUS_FMT_RGB888_1X24, }; -- 2.11.0