git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
467f927
)
video: endeavoru-panel: add missing LPM flag
author
Svyatoslav Ryhel
<clamor95@gmail.com>
Fri, 21 Feb 2025 14:01:07 +0000
(16:01 +0200)
committer
Svyatoslav 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/endeavoru-panel.c
patch
|
blob
|
history
diff --git
a/drivers/video/endeavoru-panel.c
b/drivers/video/endeavoru-panel.c
index
90f838e
..
9950ff8
100644
(file)
--- a/
drivers/video/endeavoru-panel.c
+++ b/
drivers/video/endeavoru-panel.c
@@
-236,7
+236,7
@@
static int endeavoru_panel_probe(struct udevice *dev)
/* fill characteristics of DSI data link */
plat->lanes = 2;
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);
}