aboutsummaryrefslogtreecommitdiff
path: root/lib/fdtdec.c
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2020-07-10 13:16:50 +0200
committerSimon Glass <sjg@chromium.org>2020-07-25 14:46:57 -0600
commit50c7b723bd47cc8516ea84690f3f07b65a9ee8d6 (patch)
tree36ab5a031fb0a590da1a264f211e55136d832357 /lib/fdtdec.c
parent62897c4344363b6124ff12411325fa68b1b52d29 (diff)
downloadu-boot-50c7b723bd47cc8516ea84690f3f07b65a9ee8d6.zip
u-boot-50c7b723bd47cc8516ea84690f3f07b65a9ee8d6.tar.gz
u-boot-50c7b723bd47cc8516ea84690f3f07b65a9ee8d6.tar.bz2
Revert "lib: fdt: Split fdtdec_setup_mem_size_base()"
This reverts commit 3ebe09d09a407f93022d945a205c5318239eb3f6. There is no user of this split function that's why remove it. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib/fdtdec.c')
-rw-r--r--lib/fdtdec.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/fdtdec.c b/lib/fdtdec.c
index 36c1ad4..78576b5 100644
--- a/lib/fdtdec.c
+++ b/lib/fdtdec.c
@@ -1030,18 +1030,18 @@ int fdtdec_decode_display_timing(const void *blob, int parent, int index,
return ret;
}
-int fdtdec_setup_mem_size_base_fdt(const void *blob)
+int fdtdec_setup_mem_size_base(void)
{
int ret, mem;
struct fdt_resource res;
- mem = fdt_path_offset(blob, "/memory");
+ mem = fdt_path_offset(gd->fdt_blob, "/memory");
if (mem < 0) {
debug("%s: Missing /memory node\n", __func__);
return -EINVAL;
}
- ret = fdt_get_resource(blob, mem, "reg", 0, &res);
+ ret = fdt_get_resource(gd->fdt_blob, mem, "reg", 0, &res);
if (ret != 0) {
debug("%s: Unable to decode first memory bank\n", __func__);
return -EINVAL;
@@ -1055,11 +1055,6 @@ int fdtdec_setup_mem_size_base_fdt(const void *blob)
return 0;
}
-int fdtdec_setup_mem_size_base(void)
-{
- return fdtdec_setup_mem_size_base_fdt(gd->fdt_blob);
-}
-
#if defined(CONFIG_NR_DRAM_BANKS)
static int get_next_memory_node(const void *blob, int mem)