diff options
author | Simon Glass <sjg@chromium.org> | 2020-10-30 21:38:53 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-02-02 15:33:42 -0500 |
commit | 401d1c4f5d2d29c4bc4beaec95402ca23eb63295 (patch) | |
tree | 0122abb2a3f1ea9837eaccc6150d2dae9570388e /board/siemens | |
parent | fdcb93e1709ab1a2ebb562455621617c29e2099c (diff) | |
download | u-boot-401d1c4f5d2d29c4bc4beaec95402ca23eb63295.tar.gz u-boot-401d1c4f5d2d29c4bc4beaec95402ca23eb63295.tar.bz2 u-boot-401d1c4f5d2d29c4bc4beaec95402ca23eb63295.zip |
common: Drop asm/global_data.h from common header
Move this out of the common header and include it only where needed. In
a number of cases this requires adding "struct udevice;" to avoid adding
another large header or in other cases replacing / adding missing header
files that had been pulled in, very indirectly. Finally, we have a few
cases where we did not need to include <asm/global_data.h> at all, so
remove that include.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/siemens')
-rw-r--r-- | board/siemens/capricorn/spl.c | 1 | ||||
-rw-r--r-- | board/siemens/common/board.c | 1 | ||||
-rw-r--r-- | board/siemens/corvus/board.c | 1 | ||||
-rw-r--r-- | board/siemens/smartweb/smartweb.c | 1 | ||||
-rw-r--r-- | board/siemens/taurus/taurus.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/board/siemens/capricorn/spl.c b/board/siemens/capricorn/spl.c index 8435bd3863..8e077d73ae 100644 --- a/board/siemens/capricorn/spl.c +++ b/board/siemens/capricorn/spl.c @@ -9,6 +9,7 @@ #include <init.h> #include <spl.h> #include <dm.h> +#include <asm/global_data.h> #include <dm/uclass.h> #include <dm/device.h> #include <dm/uclass-internal.h> diff --git a/board/siemens/common/board.c b/board/siemens/common/board.c index e0bd8590bc..1bdf404ac3 100644 --- a/board/siemens/common/board.c +++ b/board/siemens/common/board.c @@ -25,6 +25,7 @@ #include <asm/arch/gpio.h> #include <asm/arch/mmc_host_def.h> #include <asm/arch/sys_proto.h> +#include <asm/global_data.h> #include <asm/io.h> #include <asm/emif.h> #include <asm/gpio.h> diff --git a/board/siemens/corvus/board.c b/board/siemens/corvus/board.c index 25d85a8f17..a6e1737be0 100644 --- a/board/siemens/corvus/board.c +++ b/board/siemens/corvus/board.c @@ -14,6 +14,7 @@ #include <dm.h> #include <init.h> #include <log.h> +#include <asm/global_data.h> #include <asm/io.h> #include <asm/arch/at91sam9g45_matrix.h> #include <asm/arch/at91sam9_smc.h> diff --git a/board/siemens/smartweb/smartweb.c b/board/siemens/smartweb/smartweb.c index c6bdd97083..d500a6214d 100644 --- a/board/siemens/smartweb/smartweb.c +++ b/board/siemens/smartweb/smartweb.c @@ -19,6 +19,7 @@ #include <dm.h> #include <init.h> #include <net.h> +#include <asm/global_data.h> #include <asm/io.h> #include <asm/arch/at91sam9_sdramc.h> #include <asm/arch/at91sam9260_matrix.h> diff --git a/board/siemens/taurus/taurus.c b/board/siemens/taurus/taurus.c index 91e29f06f6..cad16f9065 100644 --- a/board/siemens/taurus/taurus.c +++ b/board/siemens/taurus/taurus.c @@ -17,6 +17,7 @@ #include <env.h> #include <flash.h> #include <init.h> +#include <asm/global_data.h> #include <asm/io.h> #include <asm/arch/at91sam9260_matrix.h> #include <asm/arch/at91sam9_smc.h> |