summaryrefslogtreecommitdiff
path: root/board/technexion
diff options
context:
space:
mode:
authorJoris Offouga <offougajoris@gmail.com>2019-09-23 15:54:40 +0300
committerStefano Babic <sbabic@denx.de>2019-10-08 17:36:37 +0300
commitf730fdf98b78deb331b7f114b75aebd4e6c6e523 (patch)
treea535f9f17c5eb27e0dad55e13f158fe16b8eeca8 /board/technexion
parentd714a75fd4dcfb0eb8b7e1dd29f43e07113cec0b (diff)
downloadu-boot-f730fdf98b78deb331b7f114b75aebd4e6c6e523.tar.xz
pico-imx7d: fix splash logo drawing
Signed-off-by: Joris Offouga <offougajoris@gmail.com> Reviewed-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'board/technexion')
-rw-r--r--board/technexion/pico-imx7d/pico-imx7d.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/board/technexion/pico-imx7d/pico-imx7d.c b/board/technexion/pico-imx7d/pico-imx7d.c
index 916220516e..32b04b8fd6 100644
--- a/board/technexion/pico-imx7d/pico-imx7d.c
+++ b/board/technexion/pico-imx7d/pico-imx7d.c
@@ -19,10 +19,6 @@
#include <power/pmic.h>
#include <power/pfuze3000_pmic.h>
#include "../../freescale/common/pfuze.h"
-#ifdef CONFIG_DM_VIDEO
-#include <bmp_logo_data.h>
-#include <video.h>
-#endif
DECLARE_GLOBAL_DATA_PTR;
@@ -250,18 +246,9 @@ int board_init(void)
gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
#ifdef CONFIG_DM_VIDEO
- struct udevice *dev;
- int ret;
-
- ret = uclass_get_device(UCLASS_VIDEO, 0, &dev);
- if (ret)
- return ret;
setup_lcd();
- ret = video_bmp_display(dev, (ulong)bmp_logo_bitmap, 0, 0, true);
- if (ret)
- return ret;
#endif
#ifdef CONFIG_FEC_MXC
setup_fec();