From: Simon Glass Date: Mon, 6 Feb 2023 00:55:10 +0000 (-0700) Subject: Correct SPL use of SPLASH_SOURCE X-Git-Url: http://git.dujemihanovic.xyz/html/index.html?a=commitdiff_plain;h=b7e4869d9f2a0af4cd2ca88c83b198d04bdbed73;p=u-boot.git Correct SPL use of SPLASH_SOURCE This converts 1 usage of this option to the non-SPL form, since there is no SPL_SPLASH_SOURCE defined in Kconfig Signed-off-by: Simon Glass --- diff --git a/common/splash.c b/common/splash.c index 2e466a8a0f..245ff680eb 100644 --- a/common/splash.c +++ b/common/splash.c @@ -89,7 +89,7 @@ static inline int splash_video_logo_load(void) { return -ENOSYS; } __weak int splash_screen_prepare(void) { - if (CONFIG_IS_ENABLED(SPLASH_SOURCE)) + if (IS_ENABLED(CONFIG_SPLASH_SOURCE)) return splash_source_load(default_splash_locations, ARRAY_SIZE(default_splash_locations));