summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 17:55:10 -0700
committerTom Rini <trini@konsulko.com>2023-02-10 07:41:40 -0500
commitb7e4869d9f2a0af4cd2ca88c83b198d04bdbed73 (patch)
tree2a38c8802d7e610ce68ffadc7f6546fb8427705d /common
parent4337b9b6dcdee7c7f6a807335e1730aa2c6760c7 (diff)
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 <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r--common/splash.c2
1 files changed, 1 insertions, 1 deletions
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));