From 096f0485066b7d939b1945a4e399554ea467749e Mon Sep 17 00:00:00 2001 From: Ken Huang Date: Wed, 26 Jul 2023 23:49:21 +0800 Subject: display: bigsurf: Correct DBV command for AOD mode Bug: 279028102 Test: check AOD Change-Id: I69d42bfa248e40da60da7af1065c2b6540c991b4 Signed-off-by: Ken Huang --- display/panel-google-bigsurf.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/display/panel-google-bigsurf.c b/display/panel-google-bigsurf.c index f354717..7ca27cb 100644 --- a/display/panel-google-bigsurf.c +++ b/display/panel-google-bigsurf.c @@ -93,14 +93,14 @@ static const struct exynos_dsi_cmd bigsurf_lp_off_cmds[] = { static const struct exynos_dsi_cmd bigsurf_lp_low_cmds[] = { /* 10 nit */ - EXYNOS_DSI_CMD_SEQ(MIPI_DCS_SET_DISPLAY_BRIGHTNESS, - 0x00, 0x00, 0x00, 0x00, 0x03, 0x33), + EXYNOS_DSI_CMD_SEQ(0x6F, 0x04), + EXYNOS_DSI_CMD_SEQ(MIPI_DCS_SET_DISPLAY_BRIGHTNESS, 0x03, 0x33), }; static const struct exynos_dsi_cmd bigsurf_lp_high_cmds[] = { /* 50 nit */ - EXYNOS_DSI_CMD_SEQ(MIPI_DCS_SET_DISPLAY_BRIGHTNESS, - 0x00, 0x00, 0x00, 0x00, 0x0F, 0xFE), + EXYNOS_DSI_CMD_SEQ(0x6F, 0x04), + EXYNOS_DSI_CMD_SEQ(MIPI_DCS_SET_DISPLAY_BRIGHTNESS, 0x0F, 0xFE), }; static const struct exynos_binned_lp bigsurf_binned_lp[] = { -- cgit v1.2.3