video: endeavoru-panel: add missing LPM flag

Add missing MIPI_DSI_MODE_LPM mode flag.

Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
This commit is contained in:
Svyatoslav Ryhel
2025-02-21 16:01:07 +02:00
parent 467f9275e7
commit 620b11de99

View File

@@ -236,7 +236,7 @@ static int endeavoru_panel_probe(struct udevice *dev)
/* fill characteristics of DSI data link */ /* fill characteristics of DSI data link */
plat->lanes = 2; plat->lanes = 2;
plat->format = MIPI_DSI_FMT_RGB888; 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 endeavoru_panel_hw_init(dev); return endeavoru_panel_hw_init(dev);
} }