Skip to content
Snippets Groups Projects
Commit 25a44833 authored by Fabio Estevam's avatar Fabio Estevam Committed by Tom Rini
Browse files

video: Do not show splash and U-Boot logo simultaneously


Currently, on imx6sabresd and gwventana boards, the company logo
and U-Boot logo are shown.

The correct behavior is to show only the company logo, if available,
and not both logos.

Reported-by: default avatarTim Harvey <tharvey@gateworks.com>
Signed-off-by: default avatarFabio Estevam <festevam@denx.de>
Tested-by: Tim Harvey <tharvey@gateworks.com> #gw_ventana
parent 051df08f
No related branches found
No related tags found
No related merge requests found
...@@ -407,7 +407,8 @@ static int video_post_probe(struct udevice *dev) ...@@ -407,7 +407,8 @@ static int video_post_probe(struct udevice *dev)
return ret; return ret;
} }
if (IS_ENABLED(CONFIG_VIDEO_LOGO) && !plat->hide_logo) { if (IS_ENABLED(CONFIG_VIDEO_LOGO) &&
!IS_ENABLED(CONFIG_SPLASH_SCREEN) && !plat->hide_logo) {
ret = show_splash(dev); ret = show_splash(dev);
if (ret) { if (ret) {
log_debug("Cannot show splash screen\n"); log_debug("Cannot show splash screen\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment