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 /board/google/imx8mq_phanbell | |
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>
Diffstat (limited to 'board/google/imx8mq_phanbell')
-rw-r--r-- | board/google/imx8mq_phanbell/imx8mq_phanbell.c | 1 | ||||
-rw-r--r-- | board/google/imx8mq_phanbell/spl.c | 2 |
2 files changed, 1 insertions, 2 deletions
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> |