video: lg-ld070wx3: add missing LPM flag
authorSvyatoslav Ryhel <clamor95@gmail.com>
Fri, 21 Feb 2025 14:03:18 +0000 (16:03 +0200)
committerSvyatoslav Ryhel <clamor95@gmail.com>
Thu, 13 Mar 2025 17:13:18 +0000 (19:13 +0200)
Add missing MIPI_DSI_MODE_LPM mode flag.

Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
drivers/video/lg-ld070wx3.c

index 610a06f..3676e45 100644 (file)
@@ -158,7 +158,7 @@ static int lg_ld070wx3_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_VIDEO;
+       plat->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_LPM;
 
        return lg_ld070wx3_hw_init(dev);
 }