summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorBin Meng <bin.meng@windriver.com>2020-08-03 09:09:03 +0300
committerAndes <uboot@andestech.com>2020-08-14 09:38:53 +0300
commitd6a01704b06b5ffe4b90366b15525389c54582ba (patch)
tree432187af07d98e55ba2922adb0fb432cf2d9a440 /board
parentc4295ec849b387d039719c024afb465a4ca5cedb (diff)
downloadu-boot-d6a01704b06b5ffe4b90366b15525389c54582ba.tar.xz
riscv: sifive/fu540: spl: Rename soc_spl_init()
spl_soc_init() seems to be a better name, as all SPL functions names start from the spl_ prefix. Signed-off-by: Bin Meng <bin.meng@windriver.com> Reviewed-by: Rick Chen <rick@andestech.com> Reviewed-by: Pragnesh Patel <pragnesh.patel@sifive.com> Tested-by: Pragnesh Patel <pragnesh.patel@sifive.com>
Diffstat (limited to 'board')
-rw-r--r--board/sifive/fu540/spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/sifive/fu540/spl.c b/board/sifive/fu540/spl.c
index 31d315d5fd..135e118617 100644
--- a/board/sifive/fu540/spl.c
+++ b/board/sifive/fu540/spl.c
@@ -21,7 +21,7 @@ int spl_board_init_f(void)
{
int ret;
- ret = soc_spl_init();
+ ret = spl_soc_init();
if (ret) {
debug("FU540 SPL init failed: %d\n", ret);
return ret;