diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-10-08 22:57:25 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-25 07:01:59 -0400 |
commit | 002ad7b87780d80c4636f623d4e9e4cc89734de4 (patch) | |
tree | 32ac579fa8e2656a88bd1f48fc61c85edbd9fb46 /post | |
parent | 00dcb07c545a6c5650fa5d2350b4f3f14e92274c (diff) |
misc: use __weak
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'post')
-rw-r--r-- | post/post.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/post/post.c b/post/post.c index 4af5355fa5a..4194edb89e8 100644 --- a/post/post.c +++ b/post/post.c @@ -52,7 +52,7 @@ int post_init_f(void) * Boards with hotkey support can override this weak default function * by defining one in their board specific code. */ -int __post_hotkeys_pressed(void) +__weak int post_hotkeys_pressed(void) { #ifdef CONFIG_SYS_POST_HOTKEYS_GPIO int ret; @@ -73,9 +73,6 @@ int __post_hotkeys_pressed(void) return 0; /* No hotkeys supported */ } -int post_hotkeys_pressed(void) - __attribute__((weak, alias("__post_hotkeys_pressed"))); - void post_bootmode_init(void) { @@ -236,11 +233,9 @@ static void post_get_flags(int *test_flags) test_flags[j] |= POST_SLOWTEST; } -void __show_post_progress(unsigned int test_num, int before, int result) +__weak void show_post_progress(unsigned int test_num, int before, int result) { } -void show_post_progress(unsigned int, int, int) - __attribute__((weak, alias("__show_post_progress"))); static int post_run_single(struct post_test *test, int test_flags, int flags, unsigned int i) |