diff options
author | Simon Glass <sjg@chromium.org> | 2022-10-18 07:46:31 -0600 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2022-10-30 20:07:17 +0100 |
commit | b86986c7b314f1378ca5be8df49310a6ce7302f8 (patch) | |
tree | 11f72c50e524ae5b37e934e9a5d0558c00c6ee97 /common/splash.c | |
parent | 9330abfb4a00512213d34147b78d2041fd467c6e (diff) | |
download | u-boot-b86986c7b314f1378ca5be8df49310a6ce7302f8.tar.gz u-boot-b86986c7b314f1378ca5be8df49310a6ce7302f8.tar.bz2 u-boot-b86986c7b314f1378ca5be8df49310a6ce7302f8.zip |
video: Rename CONFIG_DM_VIDEO to CONFIG_VIDEO
Now that all the old code is gone, rename this option. Driver model
migration is now complete.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/splash.c')
-rw-r--r-- | common/splash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/splash.c b/common/splash.c index 8a55dd3847..2e466a8a0f 100644 --- a/common/splash.c +++ b/common/splash.c @@ -119,7 +119,7 @@ void splash_get_pos(int *x, int *y) } #endif /* CONFIG_SPLASH_SCREEN_ALIGN */ -#if defined(CONFIG_DM_VIDEO) && !defined(CONFIG_HIDE_LOGO_VERSION) +#if defined(CONFIG_VIDEO) && !defined(CONFIG_HIDE_LOGO_VERSION) #ifdef CONFIG_VIDEO_LOGO #include <bmp_logo.h> @@ -151,7 +151,7 @@ void splash_display_banner(void) vidconsole_put_string(dev, buf); vidconsole_position_cursor(dev, 0, row); } -#endif /* CONFIG_DM_VIDEO && !CONFIG_HIDE_LOGO_VERSION */ +#endif /* CONFIG_VIDEO && !CONFIG_HIDE_LOGO_VERSION */ /* * Common function to show a splash image if env("splashimage") is set. @@ -181,7 +181,7 @@ int splash_display(void) if (x || y) goto end; -#if defined(CONFIG_DM_VIDEO) && !defined(CONFIG_HIDE_LOGO_VERSION) +#if defined(CONFIG_VIDEO) && !defined(CONFIG_HIDE_LOGO_VERSION) splash_display_banner(); #endif end: |