[PATCH] 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 ---
test/print_ut.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/print_ut.c b/test/print_ut.c index a456a449ef..61ea432e46 100644 --- a/test/print_ut.c +++ b/test/print_ut.c @@ -6,8 +6,8 @@ #define DEBUG
#include <common.h> -#if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD) #include <command.h> +#if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD) #include <efi_api.h> #endif #include <display_options.h>

On 22.03.21 14:15, Sean Anderson wrote:
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
Fixes: 091401131085 ("[PATCH] dm: test: Always include command.h for print_ut")
test/print_ut.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/print_ut.c b/test/print_ut.c index a456a449ef..61ea432e46 100644 --- a/test/print_ut.c +++ b/test/print_ut.c @@ -6,8 +6,8 @@ #define DEBUG
#include <common.h> -#if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD) #include <command.h> +#if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD)
We should simply remove this #if.
Best regards
Heinrich
#include <efi_api.h> #endif #include <display_options.h>
participants (2)
-
Heinrich Schuchardt
-
Sean Anderson