diff options
author | Tom Rini <trini@konsulko.com> | 2020-10-05 10:54:10 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-05 10:54:10 -0400 |
commit | 17e76b33cc0ec2eb2c519b66b6f6c491718e8046 (patch) | |
tree | b27990bdf1e24ff764d5a3602358b3dd2c2d098e /drivers/video/stm32/stm32_dsi.c | |
parent | fee98a3ba92dea55983ab7d947e11848bc1c64c3 (diff) | |
parent | 04e29ca5bbb82f15d7a32d4130214c6a15db69aa (diff) |
Merge tag 'u-boot-stm32-20201003' of https://gitlab.denx.de/u-boot/custodians/u-boot-stm into next
- stm32mp: DT alignment with Linux 5.9-rc4
- stm32mp: convert drivers to APIs which support live DT
- stm32mp: gpio: minor fixes
Diffstat (limited to 'drivers/video/stm32/stm32_dsi.c')
-rw-r--r-- | drivers/video/stm32/stm32_dsi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/stm32/stm32_dsi.c b/drivers/video/stm32/stm32_dsi.c index 283151398bb..9d5abacc2bf 100644 --- a/drivers/video/stm32/stm32_dsi.c +++ b/drivers/video/stm32/stm32_dsi.c @@ -359,8 +359,7 @@ static int stm32_dsi_attach(struct udevice *dev) ret = panel_get_display_timing(priv->panel, &timings); if (ret) { - ret = fdtdec_decode_display_timing(gd->fdt_blob, - dev_of_offset(priv->panel), + ret = ofnode_decode_display_timing(dev_ofnode(priv->panel), 0, &timings); if (ret) { dev_err(dev, "decode display timing error %d\n", ret); |