diff options
Diffstat (limited to 'common/splash.c')
| -rw-r--r-- | common/splash.c | 13 | 
1 files changed, 4 insertions, 9 deletions
| diff --git a/common/splash.c b/common/splash.c index 5cf52723a..c7444977e 100644 --- a/common/splash.c +++ b/common/splash.c @@ -21,16 +21,11 @@   */  #include <splash.h> -#include <config.h> -#ifdef CONFIG_SPLASH_SCREEN_PREPARE -int splash_screen_prepare(void) -{ -	return board_splash_screen_prepare(); -} -#else -int splash_screen_prepare(void) +int __splash_screen_prepare(void)  {  	return 0;  } -#endif + +int splash_screen_prepare(void) +	__attribute__ ((weak, alias("__splash_screen_prepare"))); |