Commit f1080f82 authored by Sebastian Reichel's avatar Sebastian Reichel Committed by Neil Armstrong
Browse files

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: 2f7b832f ("drm/panel: simple: Add support for AUO G190EAN01 panel")
Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: default avatarIan Ray <ian.ray@gehealthcare.com>
Reviewed-by: default avatarNeil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: default avatarNeil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20260217142528.68613-1-ian.ray@gehealthcare.com
parent 987170d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1295,7 +1295,7 @@ static const struct panel_desc auo_g190ean01 = {
		.height = 301,
	},
	.delay = {
		.prepare = 50,
		.prepare = 30,
		.enable = 200,
		.disable = 110,
		.unprepare = 1000,