diff options
author | Simon Glass | 2021-11-19 13:24:01 -0700 |
---|---|---|
committer | Anatolij Gustschin | 2021-12-26 23:24:46 +0100 |
commit | 64cfeda8ae2e95751c5d2dfa4dc4a906478ae2f6 (patch) | |
tree | d393d5416889867809ed6385e94a810a83439114 /common | |
parent | cd4fb0f05405afec47c4d697c286c00517f50804 (diff) |
video: Convert CONFIG_VIDEO_LOGO to Kconfig
This converts the following to Kconfig:
CONFIG_VIDEO_LOGO
Note that this option depends on CONFIG_DM_VIDEO now, since cfb_console is
deprecated. The only relevant code is now in splash.c
Drop the check for DM_VIDEO in that file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/splash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/splash.c b/common/splash.c index de720df9f58..98f0089266d 100644 --- a/common/splash.c +++ b/common/splash.c @@ -52,7 +52,7 @@ static struct splash_location default_splash_locations[] = { }, }; -#if defined(CONFIG_DM_VIDEO) && defined(CONFIG_VIDEO_LOGO) +#ifdef CONFIG_VIDEO_LOGO #include <bmp_logo_data.h> |