summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-10-18 07:10:26 -0600
committerAnatolij Gustschin <agust@denx.de>2022-10-30 20:07:17 +0100
commit70cc7b614f620e95edf304ee02f03f6dcf53e19c (patch)
treebdd4bf6bdd6d64672973cbf3d8b0dbad967f00d6 /common
parent8b1129588cc66cee3dc5ee2dd969007a641f21b0 (diff)
video: Drop use of the lcd header file
This file is being removed so drop remaining references to it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r--common/splash.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/common/splash.c b/common/splash.c
index 5206e35f74..8a55dd3847 100644
--- a/common/splash.c
+++ b/common/splash.c
@@ -24,7 +24,7 @@
#include <display_options.h>
#include <env.h>
#include <splash.h>
-#include <lcd.h>
+#include <video.h>
static struct splash_location default_splash_locations[] = {
{
@@ -155,8 +155,7 @@ void splash_display_banner(void)
/*
* Common function to show a splash image if env("splashimage") is set.
- * Is used for both dm_video and lcd video stacks. For additional
- * details please refer to doc/README.splashprepare.
+ * For additional details please refer to doc/README.splashprepare.
*/
#if defined(CONFIG_SPLASH_SCREEN) && defined(CONFIG_CMD_BMP)
int splash_display(void)