diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-18 20:09:26 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-06-01 07:03:11 -0600 |
commit | eed36609b5494b94bdca0e2bdc5ac2bd07ab2518 (patch) | |
tree | 2c28f57323a6c423b9dbc69b43c4052e71513564 /drivers/mtd/pic32_flash.c | |
parent | 029ab15a694624f859472747acf9ed10ca57b1a8 (diff) | |
download | u-boot-eed36609b5494b94bdca0e2bdc5ac2bd07ab2518.tar.gz |
fdt: Rename a few functions in fdt_support
These two functions have an of_ prefix which conflicts with naming used
in of_addr. Rename them:
fdt_read_number
fdt_support_bus_default_count_cells
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/mtd/pic32_flash.c')
-rw-r--r-- | drivers/mtd/pic32_flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/pic32_flash.c b/drivers/mtd/pic32_flash.c index 8ed7874cc9..e1a8d3bc4b 100644 --- a/drivers/mtd/pic32_flash.c +++ b/drivers/mtd/pic32_flash.c @@ -384,7 +384,7 @@ static int pic32_flash_probe(struct udevice *dev) * match with reg-names. */ parent = fdt_parent_offset(blob, node); - of_bus_default_count_cells(blob, parent, &addrc, &sizec); + fdt_support_default_count_cells(blob, parent, &addrc, &sizec); list = fdt_getprop(blob, node, "reg-names", &len); if (!list) return -ENOENT; |