From d6a01704b06b5ffe4b90366b15525389c54582ba Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Sun, 2 Aug 2020 23:09:03 -0700 Subject: 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 Reviewed-by: Rick Chen Reviewed-by: Pragnesh Patel Tested-by: Pragnesh Patel --- board/sifive/fu540/spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/sifive/fu540') diff --git a/board/sifive/fu540/spl.c b/board/sifive/fu540/spl.c index 31d315d..135e118 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; -- cgit v1.1