Skip to content
Snippets Groups Projects
Commit 3a03553a authored by Bin Meng's avatar Bin Meng Committed by Simon Glass
Browse files

test: print_ut: Fix potential build error


This files uses the macro U_BOOT_CMD which is defined in command.h,
but command.h is conditionally included. Fix it.

Signed-off-by: Bin Meng's avatarBin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass's avatarSimon Glass <sjg@chromium.org>
parent f0d04972
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment