diff options
author | Tom Rini <trini@konsulko.com> | 2023-02-10 09:17:25 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-10 09:17:25 -0500 |
commit | 8b301102e246350a0ccedc370f7c9923b02f86f2 (patch) | |
tree | 15ddc9d376d630efb4c614c4bda559d3c0c99d64 /board/sandbox/sandbox.c | |
parent | 81e8a51cee2b265e26272f0c67518c4844baa36c (diff) | |
parent | 42a13b21dcb6663847ae71c0a42dcf2f4149b69a (diff) |
Merge branch '2023-02-08-Kconfig-cleanup-CONFIG_IS_ENABLED-to-IS_ENABLED'
- This series brings in a large number of patches in the form of changing
CONFIG_IS_ENABLED(FOO) to IS_ENABLED(CONFIG_FOO) when there it is the
case that CONFIG_xPL_FOO is never a valid symbol. The majority of
the times where we do this, it is unintentional and does not make the
code more useful, or rarely, introduces bugs.
Diffstat (limited to 'board/sandbox/sandbox.c')
-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, \ |