aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv
diff options
context:
space:
mode:
authorBin Meng <bin.meng@windriver.com>2020-08-02 23:09:03 -0700
committerAndes <uboot@andestech.com>2020-08-14 14:38:53 +0800
commitd6a01704b06b5ffe4b90366b15525389c54582ba (patch)
tree432187af07d98e55ba2922adb0fb432cf2d9a440 /arch/riscv
parentc4295ec849b387d039719c024afb465a4ca5cedb (diff)
downloadu-boot-d6a01704b06b5ffe4b90366b15525389c54582ba.zip
u-boot-d6a01704b06b5ffe4b90366b15525389c54582ba.tar.gz
u-boot-d6a01704b06b5ffe4b90366b15525389c54582ba.tar.bz2
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 'arch/riscv')
-rw-r--r--arch/riscv/cpu/fu540/spl.c2
-rw-r--r--arch/riscv/include/asm/arch-fu540/spl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/riscv/cpu/fu540/spl.c b/arch/riscv/cpu/fu540/spl.c
index a2034e9..45657b7 100644
--- a/arch/riscv/cpu/fu540/spl.c
+++ b/arch/riscv/cpu/fu540/spl.c
@@ -7,7 +7,7 @@
#include <dm.h>
#include <log.h>
-int soc_spl_init(void)
+int spl_soc_init(void)
{
int ret;
struct udevice *dev;
diff --git a/arch/riscv/include/asm/arch-fu540/spl.h b/arch/riscv/include/asm/arch-fu540/spl.h
index 0c188be..4697279 100644
--- a/arch/riscv/include/asm/arch-fu540/spl.h
+++ b/arch/riscv/include/asm/arch-fu540/spl.h
@@ -9,6 +9,6 @@
#ifndef _SPL_SIFIVE_H
#define _SPL_SIFIVE_H
-int soc_spl_init(void);
+int spl_soc_init(void);
#endif /* _SPL_SIFIVE_H */