diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-30 20:41:38 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-06 15:07:50 -0600 |
commit | 67b87187af7d28ca3c2e94bad18dfef63819aa2a (patch) | |
tree | e0ce0eb678099fec132ed4b656021afa51f25901 | |
parent | f1f9871e86f84f1fd0e67a3d290aef92274cac07 (diff) | |
download | u-boot-67b87187af7d28ca3c2e94bad18dfef63819aa2a.tar.gz u-boot-67b87187af7d28ca3c2e94bad18dfef63819aa2a.tar.bz2 u-boot-67b87187af7d28ca3c2e94bad18dfef63819aa2a.zip |
board: ea: Remove <common.h> and add needed includes
Remove <common.h> from this board vendor directory and when needed
add missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | board/ea/ea-lpc3250devkitv2/ea-lpc3250devkitv2.c | 2 | ||||
-rw-r--r-- | board/ea/mx7ulp_com/mx7ulp_com.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/board/ea/ea-lpc3250devkitv2/ea-lpc3250devkitv2.c b/board/ea/ea-lpc3250devkitv2/ea-lpc3250devkitv2.c index 2b03e4891d..222e5facf4 100644 --- a/board/ea/ea-lpc3250devkitv2/ea-lpc3250devkitv2.c +++ b/board/ea/ea-lpc3250devkitv2/ea-lpc3250devkitv2.c @@ -5,7 +5,7 @@ */ #include <init.h> -#include <common.h> +#include <config.h> #include <asm/io.h> #include <asm/global_data.h> diff --git a/board/ea/mx7ulp_com/mx7ulp_com.c b/board/ea/mx7ulp_com/mx7ulp_com.c index cd9591a9e3..8f78937e09 100644 --- a/board/ea/mx7ulp_com/mx7ulp_com.c +++ b/board/ea/mx7ulp_com/mx7ulp_com.c @@ -3,7 +3,6 @@ * Copyright (C) 2016 Freescale Semiconductor, Inc. */ -#include <common.h> #include <init.h> #include <asm/global_data.h> #include <asm/io.h> |