aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv/include
diff options
context:
space:
mode:
authorLukas Funke <lukas.funke@weidmueller.com>2024-04-24 09:43:38 +0200
committerLeo Yu-Chi Liang <ycliang@andestech.com>2024-05-02 00:01:18 +0800
commitd6c81b87e6c15d23815ffc37241795de4bdb71be (patch)
tree0048e724d89e054972891d8270eb105ad1e95119 /arch/riscv/include
parent849e3fd8f698a3e12b5536d18d261e3fff87db33 (diff)
downloadu-boot-d6c81b87e6c15d23815ffc37241795de4bdb71be.zip
u-boot-d6c81b87e6c15d23815ffc37241795de4bdb71be.tar.gz
u-boot-d6c81b87e6c15d23815ffc37241795de4bdb71be.tar.bz2
board: sifive: Rename spl_soc_init() to spl_dram_init()
Rename spl_soc_init() to spl_dram_init() because the generic function name does not reflect what the function actually does. Also spl_dram_init() is commonly used for dram initialization and should be called from board_init_f(). Signed-off-by: Lukas Funke <lukas.funke@weidmueller.com> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
Diffstat (limited to 'arch/riscv/include')
-rw-r--r--arch/riscv/include/asm/arch-fu540/spl.h2
-rw-r--r--arch/riscv/include/asm/arch-fu740/spl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/riscv/include/asm/arch-fu540/spl.h b/arch/riscv/include/asm/arch-fu540/spl.h
index 4697279..519e7eb 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 spl_soc_init(void);
+int spl_dram_init(void);
#endif /* _SPL_SIFIVE_H */
diff --git a/arch/riscv/include/asm/arch-fu740/spl.h b/arch/riscv/include/asm/arch-fu740/spl.h
index 15ad9e7..b327ac5 100644
--- a/arch/riscv/include/asm/arch-fu740/spl.h
+++ b/arch/riscv/include/asm/arch-fu740/spl.h
@@ -9,6 +9,6 @@
#ifndef _SPL_SIFIVE_H
#define _SPL_SIFIVE_H
-int spl_soc_init(void);
+int spl_dram_init(void);
#endif /* _SPL_SIFIVE_H */