diff options
author | Sean Anderson | 2021-03-25 22:02:28 -0400 |
---|---|---|
committer | Tom Rini | 2021-03-28 17:30:35 -0400 |
commit | 6863c7f1b633d50e025ce34ad249b59a14c99b2a (patch) | |
tree | bb4b256d24a7bdf9ab538732503b0d938ce499dd /test/print_ut.c | |
parent | 3c2503ee3327ea93a175768bafbaddff182c1c08 (diff) |
dm: test: Always include command.h for print_ut
We need this header for U_BOOT_CMD, which is always present even without
EFI.
Fixes: 82c468a049 ("dm: test: Update Makefile conditions")
Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/print_ut.c')
-rw-r--r-- | test/print_ut.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/print_ut.c b/test/print_ut.c index a456a449efa..5b0a46de9c3 100644 --- a/test/print_ut.c +++ b/test/print_ut.c @@ -6,10 +6,8 @@ #define DEBUG #include <common.h> -#if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD) #include <command.h> #include <efi_api.h> -#endif #include <display_options.h> #include <log.h> #include <version.h> |