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: Correct G190EAN01 prepare timing

The prepare timing specified by the G190EAN01 datasheet should be
between 30 and 50 ms. Considering it might take some time for the
LVDS encoder to enable the signal, we should only wait the min.
required time in the panel driver and not the max. allowed time.

Fixes: 2f7b832fc992 ("drm/panel: simple: Add support for AUO G190EAN01 panel")
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Ian Ray <ian.ray@gehealthcare.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20260217142528.68613-1-ian.ray@gehealthcare.com

authored by

Sebastian Reichel and committed by
Neil Armstrong
f1080f82 987170d0

+1 -1
+1 -1
drivers/gpu/drm/panel/panel-simple.c
··· 1295 1295 .height = 301, 1296 1296 }, 1297 1297 .delay = { 1298 - .prepare = 50, 1298 + .prepare = 30, 1299 1299 .enable = 200, 1300 1300 .disable = 110, 1301 1301 .unprepare = 1000,