mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 13:44:29 +00:00
d6a01704b0
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>
14 lines
242 B
C
14 lines
242 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2020 SiFive, Inc.
|
|
*
|
|
* Authors:
|
|
* Pragnesh Patel <pragnesh.patel@sifve.com>
|
|
*/
|
|
|
|
#ifndef _SPL_SIFIVE_H
|
|
#define _SPL_SIFIVE_H
|
|
|
|
int spl_soc_init(void);
|
|
|
|
#endif /* _SPL_SIFIVE_H */
|