diff options
author | Alifer Moraes | 2020-01-16 12:43:06 -0300 |
---|---|---|
committer | Stefano Babic | 2020-01-20 15:38:16 +0100 |
commit | 09f0c5069066a8332e419c5f5052c2900819eb47 (patch) | |
tree | ef7f8a0afbc7da06bf0649f7732d442ef26bdff5 /board | |
parent | 40eeb9c412572b8f7adf6155d5e6f4ef138fd376 (diff) |
imx8qxp_mek: Include fdt_support.h header
Include fdt_support.h header file to fix the following sparse warning:
board/freescale/imx8qxp_mek/imx8qxp_mek.c:129:5: warning: no previous
prototype for ‘ft_board_setup’ [-Wmissing-prototypes]
Signed-off-by: Alifer Moraes <alifer.wsdm@gmail.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/imx8qxp_mek/imx8qxp_mek.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/freescale/imx8qxp_mek/imx8qxp_mek.c b/board/freescale/imx8qxp_mek/imx8qxp_mek.c index 194eb60cd37..8e731ec32ed 100644 --- a/board/freescale/imx8qxp_mek/imx8qxp_mek.c +++ b/board/freescale/imx8qxp_mek/imx8qxp_mek.c @@ -9,6 +9,7 @@ #include <init.h> #include <linux/libfdt.h> #include <fsl_esdhc_imx.h> +#include <fdt_support.h> #include <asm/io.h> #include <asm/gpio.h> #include <asm/arch/clock.h> |