[U-Boot] [PATCH 2/2] imx8: scu: Update call to lists_bind_fdt()
Bin Meng
bmeng.cn at gmail.com
Mon Nov 12 15:02:18 UTC 2018
This commit should be squashed into
commit 2bba642dbaa4 ("dm: core: Respect drivers with the
DM_FLAG_PRE_RELOC flag in lists_bind_fdt()")
on u-boot-dm/master branch.
Signed-off-by: Bin Meng <bmeng.cn at gmail.com>
---
drivers/misc/imx8/scu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/misc/imx8/scu.c b/drivers/misc/imx8/scu.c
index 0647ddf..b824ac7 100644
--- a/drivers/misc/imx8/scu.c
+++ b/drivers/misc/imx8/scu.c
@@ -223,7 +223,7 @@ static int imx8_scu_bind(struct udevice *dev)
if (node < 0)
panic("No clk node found\n");
- ret = lists_bind_fdt(dev, offset_to_ofnode(node), &child);
+ ret = lists_bind_fdt(dev, offset_to_ofnode(node), &child, true);
if (ret)
return ret;
@@ -234,7 +234,7 @@ static int imx8_scu_bind(struct udevice *dev)
if (node < 0)
panic("No iomuxc node found\n");
- ret = lists_bind_fdt(dev, offset_to_ofnode(node), &child);
+ ret = lists_bind_fdt(dev, offset_to_ofnode(node), &child, true);
if (ret)
return ret;
--
2.7.4
More information about the U-Boot
mailing list