summaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-05-19 02:09:11 (GMT)
committerSimon Glass <sjg@chromium.org>2017-06-01 13:03:09 (GMT)
commit7a993bbcf2664d06e59b5b61f9889737e10529fc (patch)
tree135efc8b33cab2c89a953eb2fd66e5f82023f90c /drivers/core
parent23d632679151308b86c79389d8bbf3b481f7729f (diff)
downloadu-boot-7a993bbcf2664d06e59b5b61f9889737e10529fc.tar.xz
dm: simple-bus: Add support for livetree
Modify simple-bus to support livetree. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/simple-bus.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/core/simple-bus.c b/drivers/core/simple-bus.c
index a300217..14803e3 100644
--- a/drivers/core/simple-bus.c
+++ b/drivers/core/simple-bus.c
@@ -33,8 +33,7 @@ static int simple_bus_post_bind(struct udevice *dev)
u32 cell[3];
int ret;
- ret = fdtdec_get_int_array(gd->fdt_blob, dev_of_offset(dev), "ranges",
- cell, ARRAY_SIZE(cell));
+ ret = dev_read_u32_array(dev, "ranges", cell, ARRAY_SIZE(cell));
if (!ret) {
struct simple_bus_plat *plat = dev_get_uclass_platdata(dev);