diff options
author | Tom Rini | 2024-04-30 20:41:54 -0600 |
---|---|---|
committer | Tom Rini | 2024-05-07 08:00:24 -0600 |
commit | 2e6ecea31ebff94f5d8588b4076eaf05a2e2111c (patch) | |
tree | 6f9dacf9bbe1b1bb8f30b63b751620fc071746cd | |
parent | e779aff05fffcaf1d55ac3ae491e15c47610481d (diff) |
board: google: 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/google/chromebook_coral/coral.c | 1 | ||||
-rw-r--r-- | board/google/imx8mq_phanbell/imx8mq_phanbell.c | 1 | ||||
-rw-r--r-- | board/google/imx8mq_phanbell/spl.c | 2 | ||||
-rw-r--r-- | board/google/veyron/veyron.c | 1 |
4 files changed, 1 insertions, 4 deletions
diff --git a/board/google/chromebook_coral/coral.c b/board/google/chromebook_coral/coral.c index 9d9168d608a..7b2724c01d0 100644 --- a/board/google/chromebook_coral/coral.c +++ b/board/google/chromebook_coral/coral.c @@ -5,7 +5,6 @@ #define LOG_CATEGORY UCLASS_SYSINFO -#include <common.h> #include <bloblist.h> #include <command.h> #include <cros_ec.h> diff --git a/board/google/imx8mq_phanbell/imx8mq_phanbell.c b/board/google/imx8mq_phanbell/imx8mq_phanbell.c index d0a740dd3f4..9544d6dd19a 100644 --- a/board/google/imx8mq_phanbell/imx8mq_phanbell.c +++ b/board/google/imx8mq_phanbell/imx8mq_phanbell.c @@ -3,7 +3,6 @@ * Copyright 2020 NXP */ -#include <common.h> #include <env.h> #include <init.h> #include <malloc.h> diff --git a/board/google/imx8mq_phanbell/spl.c b/board/google/imx8mq_phanbell/spl.c index 83de5bfd75f..cfba9300dcb 100644 --- a/board/google/imx8mq_phanbell/spl.c +++ b/board/google/imx8mq_phanbell/spl.c @@ -4,7 +4,7 @@ * */ -#include <common.h> +#include <config.h> #include <hang.h> #include <asm/global_data.h> #include <asm/io.h> diff --git a/board/google/veyron/veyron.c b/board/google/veyron/veyron.c index 32dbcdc4d10..53c3435c92f 100644 --- a/board/google/veyron/veyron.c +++ b/board/google/veyron/veyron.c @@ -4,7 +4,6 @@ */ #include <clk.h> -#include <common.h> #include <dm.h> #include <init.h> #include <log.h> |