diff options
Diffstat (limited to 'test/cmd')
-rw-r--r-- | test/cmd/addrmap.c | 1 | ||||
-rw-r--r-- | test/cmd/armffa.c | 1 | ||||
-rw-r--r-- | test/cmd/bdinfo.c | 1 | ||||
-rw-r--r-- | test/cmd/exit.c | 1 | ||||
-rw-r--r-- | test/cmd/fdt.c | 1 | ||||
-rw-r--r-- | test/cmd/font.c | 1 | ||||
-rw-r--r-- | test/cmd/history.c | 1 | ||||
-rw-r--r-- | test/cmd/loadm.c | 1 | ||||
-rw-r--r-- | test/cmd/mem.c | 1 | ||||
-rw-r--r-- | test/cmd/mem_search.c | 1 | ||||
-rw-r--r-- | test/cmd/pci_mps.c | 1 | ||||
-rw-r--r-- | test/cmd/pinmux.c | 1 | ||||
-rw-r--r-- | test/cmd/rw.c | 1 | ||||
-rw-r--r-- | test/cmd/seama.c | 1 | ||||
-rw-r--r-- | test/cmd/setexpr.c | 1 | ||||
-rw-r--r-- | test/cmd/temperature.c | 1 | ||||
-rw-r--r-- | test/cmd/test_echo.c | 1 | ||||
-rw-r--r-- | test/cmd/test_pause.c | 1 | ||||
-rw-r--r-- | test/cmd/wget.c | 1 |
19 files changed, 19 insertions, 0 deletions
diff --git a/test/cmd/addrmap.c b/test/cmd/addrmap.c index 7b8f49fd375..1eb5955db17 100644 --- a/test/cmd/addrmap.c +++ b/test/cmd/addrmap.c @@ -5,6 +5,7 @@ * Copyright (C) 2021, Bin Meng <bmeng.cn@gmail.com> */ +#include <common.h> #include <console.h> #include <test/suites.h> #include <test/ut.h> diff --git a/test/cmd/armffa.c b/test/cmd/armffa.c index 38f40b72f5e..9a44a397e8a 100644 --- a/test/cmd/armffa.c +++ b/test/cmd/armffa.c @@ -8,6 +8,7 @@ * Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com> */ +#include <common.h> #include <string.h> #include <asm/sandbox_arm_ffa.h> #include <dm/test.h> diff --git a/test/cmd/bdinfo.c b/test/cmd/bdinfo.c index 027848c3e24..4977d01f62d 100644 --- a/test/cmd/bdinfo.c +++ b/test/cmd/bdinfo.c @@ -5,6 +5,7 @@ * Copyright 2023 Marek Vasut <marek.vasut+renesas@mailbox.org> */ +#include <common.h> #include <console.h> #include <mapmem.h> #include <asm/global_data.h> diff --git a/test/cmd/exit.c b/test/cmd/exit.c index d310ec8531b..7e160f7e4bb 100644 --- a/test/cmd/exit.c +++ b/test/cmd/exit.c @@ -5,6 +5,7 @@ * Copyright 2022 Marek Vasut <marex@denx.de> */ +#include <common.h> #include <console.h> #include <mapmem.h> #include <asm/global_data.h> diff --git a/test/cmd/fdt.c b/test/cmd/fdt.c index a0faf5aca90..54708552175 100644 --- a/test/cmd/fdt.c +++ b/test/cmd/fdt.c @@ -5,6 +5,7 @@ * Copyright 2022 Google LLC */ +#include <common.h> #include <console.h> #include <fdt_support.h> #include <mapmem.h> diff --git a/test/cmd/font.c b/test/cmd/font.c index a8905ce617e..1fe05c1ead5 100644 --- a/test/cmd/font.c +++ b/test/cmd/font.c @@ -5,6 +5,7 @@ * Copyright 2022 Google LLC */ +#include <common.h> #include <console.h> #include <dm.h> #include <video_console.h> diff --git a/test/cmd/history.c b/test/cmd/history.c index 6964bfa9e1e..06517fcdbb5 100644 --- a/test/cmd/history.c +++ b/test/cmd/history.c @@ -6,6 +6,7 @@ * Written by Simon Glass <sjg@chromium.org> */ +#include <common.h> #include <cli.h> #include <command.h> #include <test/lib.h> diff --git a/test/cmd/loadm.c b/test/cmd/loadm.c index dff8a97d139..41e005ac592 100644 --- a/test/cmd/loadm.c +++ b/test/cmd/loadm.c @@ -9,6 +9,7 @@ * Rui Miguel Silva <rui.silva@linaro.org> */ +#include <common.h> #include <console.h> #include <mapmem.h> #include <asm/global_data.h> diff --git a/test/cmd/mem.c b/test/cmd/mem.c index f1bbab6055b..d76f47cf311 100644 --- a/test/cmd/mem.c +++ b/test/cmd/mem.c @@ -5,6 +5,7 @@ * Copyright 2020 Google LLC */ +#include <common.h> #include <command.h> #include <test/suites.h> #include <test/test.h> diff --git a/test/cmd/mem_search.c b/test/cmd/mem_search.c index 55ad2fac1e3..f80c9c40687 100644 --- a/test/cmd/mem_search.c +++ b/test/cmd/mem_search.c @@ -6,6 +6,7 @@ * Written by Simon Glass <sjg@chromium.org> */ +#include <common.h> #include <console.h> #include <mapmem.h> #include <dm/test.h> diff --git a/test/cmd/pci_mps.c b/test/cmd/pci_mps.c index 2a64143eecd..fd96f4fba6c 100644 --- a/test/cmd/pci_mps.c +++ b/test/cmd/pci_mps.c @@ -7,6 +7,7 @@ * Written by Stephen Carlson <stcarlso@linux.microsoft.com> */ +#include <common.h> #include <console.h> #include <test/suites.h> #include <test/ut.h> diff --git a/test/cmd/pinmux.c b/test/cmd/pinmux.c index 4253baa5646..df40bb77435 100644 --- a/test/cmd/pinmux.c +++ b/test/cmd/pinmux.c @@ -5,6 +5,7 @@ * Copyright (C) 2021, STMicroelectronics - All Rights Reserved */ +#include <common.h> #include <command.h> #include <dm.h> #include <dm/test.h> diff --git a/test/cmd/rw.c b/test/cmd/rw.c index edd762e4d58..98302bf047b 100644 --- a/test/cmd/rw.c +++ b/test/cmd/rw.c @@ -3,6 +3,7 @@ * Tests for read and write commands */ +#include <common.h> #include <dm/test.h> #include <mapmem.h> #include <part.h> diff --git a/test/cmd/seama.c b/test/cmd/seama.c index b60f6550b13..b1b56930c64 100644 --- a/test/cmd/seama.c +++ b/test/cmd/seama.c @@ -5,6 +5,7 @@ * Copyright (C) 2021 Linus Walleij <linus.walleij@linaro.org> */ +#include <common.h> #include <command.h> #include <dm.h> #include <test/suites.h> diff --git a/test/cmd/setexpr.c b/test/cmd/setexpr.c index d50ce5803c3..ee329e94b85 100644 --- a/test/cmd/setexpr.c +++ b/test/cmd/setexpr.c @@ -6,6 +6,7 @@ * Written by Simon Glass <sjg@chromium.org> */ +#include <common.h> #include <console.h> #include <mapmem.h> #include <dm/test.h> diff --git a/test/cmd/temperature.c b/test/cmd/temperature.c index 364972626b1..2a1ea0611dc 100644 --- a/test/cmd/temperature.c +++ b/test/cmd/temperature.c @@ -5,6 +5,7 @@ * Copyright (C) 2022 Sartura Ltd. */ +#include <common.h> #include <command.h> #include <dm.h> #include <dm/test.h> diff --git a/test/cmd/test_echo.c b/test/cmd/test_echo.c index cde74ebeb61..091e4f823c9 100644 --- a/test/cmd/test_echo.c +++ b/test/cmd/test_echo.c @@ -5,6 +5,7 @@ * Copyright 2020, Heinrich Schuchadt <xypron.glpk@gmx.de> */ +#include <common.h> #include <command.h> #include <asm/global_data.h> #include <display_options.h> diff --git a/test/cmd/test_pause.c b/test/cmd/test_pause.c index 3703290350b..2b85cce3271 100644 --- a/test/cmd/test_pause.c +++ b/test/cmd/test_pause.c @@ -5,6 +5,7 @@ * Copyright 2022, Samuel Dionne-Riel <samuel@dionne-riel.com> */ +#include <common.h> #include <asm/global_data.h> #include <test/lib.h> #include <test/ut.h> diff --git a/test/cmd/wget.c b/test/cmd/wget.c index 356a4dcd8fa..ed83fc94a5e 100644 --- a/test/cmd/wget.c +++ b/test/cmd/wget.c @@ -6,6 +6,7 @@ * Ying-Chun Liu (PaulLiu) <paul.liu@linaro.org> */ +#include <common.h> #include <command.h> #include <dm.h> #include <env.h> |