From: Svyatoslav Ryhel Date: Fri, 21 Feb 2025 14:18:24 +0000 (+0200) Subject: video: sharp-lq101r1sx01: add missing LPM flag X-Git-Tag: v2025.07-rc1~18^2~12^2~13 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=188fc54f97d3f76e79cd0cd1b8b1b60c445cdf8d;p=pandora-u-boot.git video: sharp-lq101r1sx01: add missing LPM flag Add missing MIPI_DSI_MODE_LPM mode flag. Signed-off-by: Svyatoslav Ryhel --- diff --git a/drivers/video/sharp-lq101r1sx01.c b/drivers/video/sharp-lq101r1sx01.c index 5d8453fd796..4fdf0da8a94 100644 --- a/drivers/video/sharp-lq101r1sx01.c +++ b/drivers/video/sharp-lq101r1sx01.c @@ -255,6 +255,7 @@ static int sharp_lq101r1sx01_probe(struct udevice *dev) /* fill characteristics of DSI data link */ plat->lanes = 4; plat->format = MIPI_DSI_FMT_RGB888; + plat->mode_flags = MIPI_DSI_MODE_LPM; return sharp_lq101r1sx01_hw_init(dev); }