diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-10-08 22:57:28 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-25 07:01:59 -0400 |
commit | e7e60c13c54568465b05473f11eed30a05bb48c7 (patch) | |
tree | d336e9e6e98004e6798a6a7cbce75c22d7ed25fd /board/samsung/common | |
parent | 7b19fd6d9f64230eed2595442dbf85116685acc9 (diff) | |
download | u-boot-imx-e7e60c13c54568465b05473f11eed30a05bb48c7.zip u-boot-imx-e7e60c13c54568465b05473f11eed30a05bb48c7.tar.gz u-boot-imx-e7e60c13c54568465b05473f11eed30a05bb48c7.tar.bz2 |
samsung: board: use __weak
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'board/samsung/common')
-rw-r--r-- | board/samsung/common/board.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c index e1fc123..8b4c8e9 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -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 */ |