diff options
author | Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> | 2018-07-16 15:56:11 +0530 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2018-07-19 10:49:56 +0200 |
commit | 12308b128fa28d50c1586f60f3117f5213356756 (patch) | |
tree | 2192eb09496e7f5874e12b5aa4e57e664843881c /board/st/stm32f429-evaluation | |
parent | 1473b12ad0b33771ded1b2fd6b73d2cd6d73b8f7 (diff) | |
download | u-boot-12308b128fa28d50c1586f60f3117f5213356756.tar.gz u-boot-12308b128fa28d50c1586f60f3117f5213356756.tar.xz u-boot-12308b128fa28d50c1586f60f3117f5213356756.zip |
lib: fdtdec: Rename routine fdtdec_setup_memory_size()
This patch renames the routine fdtdec_setup_memory_size()
to fdtdec_setup_mem_size_base() as it now fills the
mem base as well along with size.
Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/st/stm32f429-evaluation')
-rw-r--r-- | board/st/stm32f429-evaluation/stm32f429-evaluation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/st/stm32f429-evaluation/stm32f429-evaluation.c b/board/st/stm32f429-evaluation/stm32f429-evaluation.c index 2e638c6059..fd2109b27c 100644 --- a/board/st/stm32f429-evaluation/stm32f429-evaluation.c +++ b/board/st/stm32f429-evaluation/stm32f429-evaluation.c @@ -23,7 +23,7 @@ int dram_init(void) return rv; } - if (fdtdec_setup_memory_size() != 0) + if (fdtdec_setup_mem_size_base() != 0) rv = -EINVAL; return rv; |