From: Simon Glass Date: Fri, 19 May 2017 02:09:11 +0000 (-0600) Subject: dm: simple-bus: Add support for livetree X-Git-Tag: v2017.07-rc1~147 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7a993bbcf2664d06e59b5b61f9889737e10529fc;p=u-boot dm: simple-bus: Add support for livetree Modify simple-bus to support livetree. Signed-off-by: Simon Glass --- diff --git a/drivers/core/simple-bus.c b/drivers/core/simple-bus.c index a300217d39..14803e32b1 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);