
24 Jun
2020
24 Jun
'20
10:45 a.m.
Copy the DSI data link characteristics from panel platform data to mipi DSI device.
Signed-off-by: Yannick Fertre yannick.fertre@st.com --- drivers/video/stm32/stm32_dsi.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/drivers/video/stm32/stm32_dsi.c b/drivers/video/stm32/stm32_dsi.c index 04796435f1..c9b1633cf7 100644 --- a/drivers/video/stm32/stm32_dsi.c +++ b/drivers/video/stm32/stm32_dsi.c @@ -354,6 +354,9 @@ static int stm32_dsi_attach(struct udevice *dev)
mplat = dev_get_platdata(priv->panel); mplat->device = &priv->device; + device->lanes = mplat->lanes; + device->format = mplat->format; + device->mode_flags = mplat->mode_flags;
ret = panel_get_display_timing(priv->panel, &timings); if (ret) {
--
2.17.1