diff options
author | Simon Glass <sjg@chromium.org> | 2017-04-06 12:47:04 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-12 13:28:32 -0400 |
commit | 3eace37e5098c7f020a45a3672c062cd4ea199a0 (patch) | |
tree | fa5995f04baf8a69e8850b440e57899898502d24 /board/freescale/ls2080aqds | |
parent | 6bacc73621066a1fa9c1ac3d1578980b8a6d3b27 (diff) |
arm: freescale: Rename initdram() to fsl_initdram()
This function name shadows a global name but is in fact different. This
is very confusing. Rename it to help with the following refactoring.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/freescale/ls2080aqds')
-rw-r--r-- | board/freescale/ls2080aqds/ddr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/ls2080aqds/ddr.c b/board/freescale/ls2080aqds/ddr.c index 1e9145d6ab..22a2676a95 100644 --- a/board/freescale/ls2080aqds/ddr.c +++ b/board/freescale/ls2080aqds/ddr.c @@ -155,7 +155,7 @@ found: } } -int initdram(void) +int fsl_initdram(void) { #if defined(CONFIG_SPL) && !defined(CONFIG_SPL_BUILD) gd->ram_size = fsl_ddr_sdram_size(); |