fdt: fix dev_get_addr_name node offset

Use the device's own DT offset, not the device's parent's.

Fixes: 43c4d44e33 ("fdt: implement dev_get_addr_name()")
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Stephen Warren 2016-04-28 16:04:15 -06:00 committed by Simon Glass
parent 54693cbdca
commit 35732098db

View File

@ -657,8 +657,8 @@ fdt_addr_t dev_get_addr_name(struct udevice *dev, const char *name)
#if CONFIG_IS_ENABLED(OF_CONTROL)
int index;
index = fdt_find_string(gd->fdt_blob, dev->parent->of_offset,
"reg-names", name);
index = fdt_find_string(gd->fdt_blob, dev->of_offset, "reg-names",
name);
if (index < 0)
return index;