diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 17:58:49 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:24 -0600 |
commit | e779aff05fffcaf1d55ac3ae491e15c47610481d (patch) | |
tree | 2fc0d80d2129affec0b7397ca8bcdebfea05ed34 | |
parent | ca5428cb5b6e78d3bdde85b4b9435acc4ccaf96d (diff) |
board: ge: Remove <common.h> and add needed includes
Remove <common.h> from this board vendor directory and when needed
add missing include files directly.
Reviewed-by: Ian Ray <ian.ray@gehealthcare.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | board/ge/b1x5v2/b1x5v2.c | 1 | ||||
-rw-r--r-- | board/ge/common/ge_rtc.c | 1 | ||||
-rw-r--r-- | board/ge/common/vpd_reader.h | 2 | ||||
-rw-r--r-- | board/ge/mx53ppd/mx53ppd.c | 1 | ||||
-rw-r--r-- | board/ge/mx53ppd/mx53ppd_video.c | 1 |
5 files changed, 1 insertions, 5 deletions
diff --git a/board/ge/b1x5v2/b1x5v2.c b/board/ge/b1x5v2/b1x5v2.c index a2cbd1512e9..031773bc5ef 100644 --- a/board/ge/b1x5v2/b1x5v2.c +++ b/board/ge/b1x5v2/b1x5v2.c @@ -17,7 +17,6 @@ #include <asm/io.h> #include <asm/mach-imx/video.h> #include <command.h> -#include <common.h> #include <i2c.h> #include <input.h> #include <ipu_pixfmt.h> diff --git a/board/ge/common/ge_rtc.c b/board/ge/common/ge_rtc.c index 6437afc7bd0..5c62ecca8c8 100644 --- a/board/ge/common/ge_rtc.c +++ b/board/ge/common/ge_rtc.c @@ -3,7 +3,6 @@ * Copyright 2017 General Electric Company */ -#include <common.h> #include <env.h> #include <dm/uclass.h> #include <rtc.h> diff --git a/board/ge/common/vpd_reader.h b/board/ge/common/vpd_reader.h index 0c51dc57e90..d32c18da351 100644 --- a/board/ge/common/vpd_reader.h +++ b/board/ge/common/vpd_reader.h @@ -3,7 +3,7 @@ * Copyright 2016 General Electric Company */ -#include "common.h" +#include <linux/types.h> struct vpd_cache; diff --git a/board/ge/mx53ppd/mx53ppd.c b/board/ge/mx53ppd/mx53ppd.c index cc462d53da6..9396d43f8ad 100644 --- a/board/ge/mx53ppd/mx53ppd.c +++ b/board/ge/mx53ppd/mx53ppd.c @@ -8,7 +8,6 @@ * Jason Liu <r64343@freescale.com> */ -#include <common.h> #include <init.h> #include <asm/global_data.h> #include <asm/io.h> diff --git a/board/ge/mx53ppd/mx53ppd_video.c b/board/ge/mx53ppd/mx53ppd_video.c index 4e2c6ebde73..eb4dd758b3b 100644 --- a/board/ge/mx53ppd/mx53ppd_video.c +++ b/board/ge/mx53ppd/mx53ppd_video.c @@ -8,7 +8,6 @@ * Fabio Estevam <fabio.estevam@freescale.com> */ -#include <common.h> #include <dm.h> #include <linux/list.h> #include <asm/arch/iomux-mx53.h> |