diff options
author | Simon Glass | 2023-02-05 15:39:42 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-09 16:32:26 -0500 |
commit | 71aa806d5d67f4aaf3effdaca92500f4a4ab4187 (patch) | |
tree | 5f8d392a49e5fe27acb9c9f71c4a5d86c1cc33a3 /board/sandbox | |
parent | 5cf9952e6995d16dbde60ca0adf244105f53ff01 (diff) |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/sandbox/sandbox.c b/board/sandbox/sandbox.c index 8b953f9b397..2e44bdf0df3 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, \ |