diff options
author | Simon Glass <sjg@chromium.org> | 2022-10-18 07:10:26 -0600 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2022-10-30 20:07:17 +0100 |
commit | 70cc7b614f620e95edf304ee02f03f6dcf53e19c (patch) | |
tree | bdd4bf6bdd6d64672973cbf3d8b0dbad967f00d6 /board/aristainetos | |
parent | 8b1129588cc66cee3dc5ee2dd969007a641f21b0 (diff) | |
download | u-boot-70cc7b614f620e95edf304ee02f03f6dcf53e19c.tar.gz u-boot-70cc7b614f620e95edf304ee02f03f6dcf53e19c.tar.bz2 u-boot-70cc7b614f620e95edf304ee02f03f6dcf53e19c.zip |
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 'board/aristainetos')
-rw-r--r-- | board/aristainetos/aristainetos.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/aristainetos/aristainetos.c b/board/aristainetos/aristainetos.c index 514cb60d5b..770f3d7d0d 100644 --- a/board/aristainetos/aristainetos.c +++ b/board/aristainetos/aristainetos.c @@ -9,6 +9,8 @@ * Author: Fabio Estevam <fabio.estevam@freescale.com> */ +#include <common.h> +#include <bmp_layout.h> #include <command.h> #include <image.h> #include <init.h> @@ -33,12 +35,12 @@ #include <i2c.h> #include <micrel.h> #include <miiphy.h> -#include <lcd.h> #include <led.h> #include <power/pmic.h> #include <power/regulator.h> #include <power/da9063_pmic.h> #include <splash.h> +#include <video.h> DECLARE_GLOBAL_DATA_PTR; |