Skip to content

Commit cd3938c

Browse files
sregregkh
authored andcommitted
drm/panel: simple: Correct G190EAN01 prepare timing
[ Upstream commit f1080f8 ] 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: 2f7b832 ("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 Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 31b2d7b commit cd3938c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/panel/panel-simple.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1295,7 +1295,7 @@ static const struct panel_desc auo_g190ean01 = {
12951295
.height = 301,
12961296
},
12971297
.delay = {
1298-
.prepare = 50,
1298+
.prepare = 30,
12991299
.enable = 200,
13001300
.disable = 110,
13011301
.unprepare = 1000,

0 commit comments

Comments
 (0)