summaryrefslogtreecommitdiff
path: root/board/sandbox
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:39:42 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 00:32:26 +0300
commit71aa806d5d67f4aaf3effdaca92500f4a4ab4187 (patch)
tree5f8d392a49e5fe27acb9c9f71c4a5d86c1cc33a3 /board/sandbox
parent5cf9952e6995d16dbde60ca0adf244105f53ff01 (diff)
downloadu-boot-71aa806d5d67f4aaf3effdaca92500f4a4ab4187.tar.xz
Correct SPL uses of EFI_HAVE_CAPSULE_SUPPORT
This converts 13 usages of this option to the non-SPL form, since there is no SPL_EFI_HAVE_CAPSULE_SUPPORT defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/sandbox')
-rw-r--r--board/sandbox/sandbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/sandbox/sandbox.c b/board/sandbox/sandbox.c
index 8b953f9b39..2e44bdf0df 100644
--- a/board/sandbox/sandbox.c
+++ b/board/sandbox/sandbox.c
@@ -29,7 +29,7 @@
*/
gd_t *gd;
-#if CONFIG_IS_ENABLED(EFI_HAVE_CAPSULE_SUPPORT)
+#if IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT)
/* GUIDs for capsule updatable firmware images */
#define SANDBOX_UBOOT_IMAGE_GUID \
EFI_GUID(0x09d7cf52, 0x0720, 0x4710, 0x91, 0xd1, \