diff options
Diffstat (limited to 'test/lib')
-rw-r--r-- | test/lib/cmd_ut_lib.c | 2 | ||||
-rw-r--r-- | test/lib/lmb.c | 1 | ||||
-rw-r--r-- | test/lib/string.c | 1 | ||||
-rw-r--r-- | test/lib/test_aes.c | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/test/lib/cmd_ut_lib.c b/test/lib/cmd_ut_lib.c index c73e8d7b05a..f5c7bf3d3b0 100644 --- a/test/lib/cmd_ut_lib.c +++ b/test/lib/cmd_ut_lib.c @@ -11,7 +11,7 @@ #include <test/suites.h> #include <test/ut.h> -int do_ut_lib(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) +int do_ut_lib(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { struct unit_test *tests = ll_entry_start(struct unit_test, lib_test); const int n_ents = ll_entry_count(struct unit_test, lib_test); diff --git a/test/lib/lmb.c b/test/lib/lmb.c index 1336b54b11f..a0fe0f6b339 100644 --- a/test/lib/lmb.c +++ b/test/lib/lmb.c @@ -5,6 +5,7 @@ #include <common.h> #include <lmb.h> +#include <log.h> #include <malloc.h> #include <dm/test.h> #include <test/ut.h> diff --git a/test/lib/string.c b/test/lib/string.c index 8e246ab4ed9..64234bef36c 100644 --- a/test/lib/string.c +++ b/test/lib/string.c @@ -11,6 +11,7 @@ #include <common.h> #include <command.h> +#include <log.h> #include <test/lib.h> #include <test/test.h> #include <test/ut.h> diff --git a/test/lib/test_aes.c b/test/lib/test_aes.c index fb8a0b17ba4..cbc712f7eda 100644 --- a/test/lib/test_aes.c +++ b/test/lib/test_aes.c @@ -8,6 +8,7 @@ #include <common.h> #include <command.h> #include <hexdump.h> +#include <rand.h> #include <uboot_aes.h> #include <test/lib.h> #include <test/test.h> |