diff options
| author | Svyatoslav Ryhel <[email protected]> | 2025-02-21 16:18:24 +0200 |
|---|---|---|
| committer | Svyatoslav Ryhel <[email protected]> | 2025-03-19 10:59:23 +0200 |
| commit | 188fc54f97d3f76e79cd0cd1b8b1b60c445cdf8d (patch) | |
| tree | 8b7397cd2a89ade786a1ce4154e0bcdafbf390b5 | |
| parent | e0a93d3a22931d6d92528c2d8840367c74d552b8 (diff) | |
video: sharp-lq101r1sx01: add missing LPM flag
Add missing MIPI_DSI_MODE_LPM mode flag.
Signed-off-by: Svyatoslav Ryhel <[email protected]>
| -rw-r--r-- | drivers/video/sharp-lq101r1sx01.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); } |
