diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:45:05 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-17 14:02:35 -0500 |
commit | 9b4a205f454dd19687aaf9a22a5bc01164182a90 (patch) | |
tree | eeca3b94aec1800823498c7a237ba67186214443 /board/ve8313/ve8313.c | |
parent | 220a3a44a339a32b3dae13122ec85ccaede5d988 (diff) |
common: Move RAM-sizing functions to init.h
These functions relate to memory init so move them into the init
header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/ve8313/ve8313.c')
-rw-r--r-- | board/ve8313/ve8313.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ve8313/ve8313.c b/board/ve8313/ve8313.c index 2ea762ccfa..d1c9535f46 100644 --- a/board/ve8313/ve8313.c +++ b/board/ve8313/ve8313.c @@ -82,7 +82,7 @@ static long fixed_sdram(void) /* now check the real size */ disable_addr_trans (); - msize = get_ram_size (CONFIG_SYS_SDRAM_BASE, msize); + msize = get_ram_size(CONFIG_SYS_SDRAM_BASE, msize); enable_addr_trans (); #endif |