mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-05 11:13:32 +00:00

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>
14 lines
248 B
C
14 lines
248 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2020-2021 SiFive, Inc.
|
|
*
|
|
* Authors:
|
|
* Pragnesh Patel <pragnesh.patel@sifve.com>
|
|
*/
|
|
|
|
#ifndef _SPL_SIFIVE_H
|
|
#define _SPL_SIFIVE_H
|
|
|
|
int spl_dram_init(void);
|
|
|
|
#endif /* _SPL_SIFIVE_H */
|