mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
samsung: board: use __weak
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
This commit is contained in:
parent
7b19fd6d9f
commit
e7e60c13c5
1 changed files with 2 additions and 6 deletions
|
@ -28,19 +28,15 @@
|
|||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
int __exynos_early_init_f(void)
|
||||
__weak int exynos_early_init_f(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
int exynos_early_init_f(void)
|
||||
__attribute__((weak, alias("__exynos_early_init_f")));
|
||||
|
||||
int __exynos_power_init(void)
|
||||
__weak int exynos_power_init(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
int exynos_power_init(void)
|
||||
__attribute__((weak, alias("__exynos_power_init")));
|
||||
|
||||
#if defined CONFIG_EXYNOS_TMU
|
||||
/* Boot Time Thermal Analysis for SoC temperature threshold breach */
|
||||
|
|
Loading…
Add table
Reference in a new issue