mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-25 21:24:21 +08:00
rockchip: video: rk_hdmi: migrate to livetree
The rk_hdmi (shared functions for multiple HDMI mini-drivers) has been using devfdt_get_addr() to read the HDMI controller's IO base address. This will cause a failure with a live tree. This changes the driver to use dev_read_addr() which is safe both for flat trees and live trees. Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Tested-by: Klaus Goger <klaus.goger@theobroma-systems.com> Reviewed-by: Anatolij Gustschin <agust@denx.de>
This commit is contained in:
parent
b4f20767b1
commit
18e48776a6
@ -84,7 +84,7 @@ int rk_hdmi_ofdata_to_platdata(struct udevice *dev)
|
||||
struct rk_hdmi_priv *priv = dev_get_priv(dev);
|
||||
struct dw_hdmi *hdmi = &priv->hdmi;
|
||||
|
||||
hdmi->ioaddr = (ulong)devfdt_get_addr(dev);
|
||||
hdmi->ioaddr = (ulong)dev_read_addr(dev);
|
||||
hdmi->mpll_cfg = rockchip_mpll_cfg;
|
||||
hdmi->phy_cfg = rockchip_phy_config;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user