diff options
author | Tom Rini <trini@konsulko.com> | 2021-02-15 16:19:40 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-02-15 18:16:45 +0300 |
commit | 2ae80437fbe0181184ae4b188b89629b902702c6 (patch) | |
tree | 846f70a5df9c80ef76284c39f0da58b8c3eba96f /test/dm | |
parent | 76b7936e6f781c86b0d3159f67f1506d01c196ce (diff) | |
parent | 401d1c4f5d2d29c4bc4beaec95402ca23eb63295 (diff) | |
download | u-boot-2ae80437fbe0181184ae4b188b89629b902702c6.tar.xz |
Merge branch '2021-02-02-drop-asm_global_data-when-unused'
- Merge the patch to take <asm/global_data.h> out of <common.h>
Diffstat (limited to 'test/dm')
-rw-r--r-- | test/dm/acpi.c | 1 | ||||
-rw-r--r-- | test/dm/blk.c | 1 | ||||
-rw-r--r-- | test/dm/bus.c | 1 | ||||
-rw-r--r-- | test/dm/core.c | 1 | ||||
-rw-r--r-- | test/dm/fdtdec.c | 1 | ||||
-rw-r--r-- | test/dm/mux-emul.c | 1 | ||||
-rw-r--r-- | test/dm/of_platdata.c | 1 | ||||
-rw-r--r-- | test/dm/ram.c | 1 | ||||
-rw-r--r-- | test/dm/test-fdt.c | 1 | ||||
-rw-r--r-- | test/dm/test-main.c | 1 |
10 files changed, 10 insertions, 0 deletions
diff --git a/test/dm/acpi.c b/test/dm/acpi.c index e0a323ecd4..240187c523 100644 --- a/test/dm/acpi.c +++ b/test/dm/acpi.c @@ -17,6 +17,7 @@ #include <acpi/acpigen.h> #include <acpi/acpi_device.h> #include <acpi/acpi_table.h> +#include <asm/global_data.h> #include <dm/acpi.h> #include <dm/test.h> #include <test/ut.h> diff --git a/test/dm/blk.c b/test/dm/blk.c index a39a1ebd28..b7f4304e9e 100644 --- a/test/dm/blk.c +++ b/test/dm/blk.c @@ -7,6 +7,7 @@ #include <dm.h> #include <part.h> #include <usb.h> +#include <asm/global_data.h> #include <asm/state.h> #include <dm/test.h> #include <test/test.h> diff --git a/test/dm/bus.c b/test/dm/bus.c index e768eab695..89a6aa6554 100644 --- a/test/dm/bus.c +++ b/test/dm/bus.c @@ -9,6 +9,7 @@ #include <os.h> #endif #include <dm.h> +#include <asm/global_data.h> #include <dm/device.h> #include <dm/device-internal.h> #include <dm/test.h> diff --git a/test/dm/core.c b/test/dm/core.c index bfd6565d95..ce31d86c7d 100644 --- a/test/dm/core.c +++ b/test/dm/core.c @@ -11,6 +11,7 @@ #include <fdtdec.h> #include <log.h> #include <malloc.h> +#include <asm/global_data.h> #include <dm/device-internal.h> #include <dm/root.h> #include <dm/util.h> diff --git a/test/dm/fdtdec.c b/test/dm/fdtdec.c index 017157a2ec..1f630ea3ee 100644 --- a/test/dm/fdtdec.c +++ b/test/dm/fdtdec.c @@ -5,6 +5,7 @@ #include <common.h> #include <dm.h> +#include <asm/global_data.h> #include <dm/of_extra.h> #include <dm/test.h> #include <test/ut.h> diff --git a/test/dm/mux-emul.c b/test/dm/mux-emul.c index 45154cea50..58233edc9b 100644 --- a/test/dm/mux-emul.c +++ b/test/dm/mux-emul.c @@ -9,6 +9,7 @@ #include <mux-internal.h> #include <dm/test.h> #include <test/ut.h> +#include <asm/global_data.h> struct mux_emul_priv { u32 state; diff --git a/test/dm/of_platdata.c b/test/dm/of_platdata.c index 26c50922c5..e9804cc27f 100644 --- a/test/dm/of_platdata.c +++ b/test/dm/of_platdata.c @@ -6,6 +6,7 @@ #include <dm/test.h> #include <test/test.h> #include <test/ut.h> +#include <asm/global_data.h> /* Test that we can find a device using of-platdata */ static int dm_test_of_plat_base(struct unit_test_state *uts) diff --git a/test/dm/ram.c b/test/dm/ram.c index f01236c8cd..f624343138 100644 --- a/test/dm/ram.c +++ b/test/dm/ram.c @@ -6,6 +6,7 @@ #include <common.h> #include <dm.h> #include <ram.h> +#include <asm/global_data.h> #include <dm/test.h> #include <test/test.h> #include <test/ut.h> diff --git a/test/dm/test-fdt.c b/test/dm/test-fdt.c index b5ac9bba24..6e83aeecd9 100644 --- a/test/dm/test-fdt.c +++ b/test/dm/test-fdt.c @@ -10,6 +10,7 @@ #include <fdtdec.h> #include <log.h> #include <malloc.h> +#include <asm/global_data.h> #include <asm/io.h> #include <dm/test.h> #include <dm/root.h> diff --git a/test/dm/test-main.c b/test/dm/test-main.c index 69458d62c8..560f8d63ec 100644 --- a/test/dm/test-main.c +++ b/test/dm/test-main.c @@ -10,6 +10,7 @@ #include <errno.h> #include <log.h> #include <malloc.h> +#include <asm/global_data.h> #include <asm/state.h> #include <dm/test.h> #include <dm/root.h> |