]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL use of SPLASH_SOURCE
authorSimon Glass <sjg@chromium.org>
Mon, 6 Feb 2023 00:55:10 +0000 (17:55 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 10 Feb 2023 12:41:40 +0000 (07:41 -0500)
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>
common/splash.c

index 2e466a8a0f58e24d85acc108c42fd5fd15a228b5..245ff680ebd0082489e3fd6442cbb44ce26b17f9 100644 (file)
@@ -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));