提交 002ad7b8 编写于 作者: J Jeroen Hofstee 提交者: Tom Rini

misc: use __weak

Signed-off-by: NJeroen Hofstee <jeroen@myspectrum.nl>
上级 00dcb07c
...@@ -105,12 +105,9 @@ static inline void *menu_item_destroy(struct menu *m, ...@@ -105,12 +105,9 @@ static inline void *menu_item_destroy(struct menu *m,
return NULL; return NULL;
} }
void __menu_display_statusline(struct menu *m) __weak void menu_display_statusline(struct menu *m)
{ {
return;
} }
void menu_display_statusline(struct menu *m)
__attribute__ ((weak, alias("__menu_display_statusline")));
/* /*
* Display a menu so the user can make a choice of an item. First display its * Display a menu so the user can make a choice of an item. First display its
......
...@@ -52,7 +52,7 @@ int post_init_f(void) ...@@ -52,7 +52,7 @@ int post_init_f(void)
* Boards with hotkey support can override this weak default function * Boards with hotkey support can override this weak default function
* by defining one in their board specific code. * 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 #ifdef CONFIG_SYS_POST_HOTKEYS_GPIO
int ret; int ret;
...@@ -73,9 +73,6 @@ int __post_hotkeys_pressed(void) ...@@ -73,9 +73,6 @@ int __post_hotkeys_pressed(void)
return 0; /* No hotkeys supported */ return 0; /* No hotkeys supported */
} }
int post_hotkeys_pressed(void)
__attribute__((weak, alias("__post_hotkeys_pressed")));
void post_bootmode_init(void) void post_bootmode_init(void)
{ {
...@@ -236,11 +233,9 @@ static void post_get_flags(int *test_flags) ...@@ -236,11 +233,9 @@ static void post_get_flags(int *test_flags)
test_flags[j] |= POST_SLOWTEST; 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, static int post_run_single(struct post_test *test,
int test_flags, int flags, unsigned int i) int test_flags, int flags, unsigned int i)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册