Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <net147@gmail.com>
Fixes: cf5c9e6dc70d ("drm/panel: simple: Add timings for the Olimex LCD-OLinuXino-4.3TS")
Reviewed-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20170720102943.25091-1-net147@gmail.com

authored by

Jonathan Liu and committed by
Thierry Reding
30c6d7ab f0a5bb98

+2 -2
+2 -2
drivers/gpu/drm/panel/panel-simple.c
··· 1523 1523 .modes = &olimex_lcd_olinuxino_43ts_mode, 1524 1524 .num_modes = 1, 1525 1525 .size = { 1526 - .width = 105, 1527 - .height = 67, 1526 + .width = 95, 1527 + .height = 54, 1528 1528 }, 1529 1529 .bus_format = MEDIA_BUS_FMT_RGB888_1X24, 1530 1530 };