diff options
| author | Simon Glass <sjg@chromium.org> | 2024-09-29 19:49:50 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2024-10-11 11:44:48 -0600 |
| commit | 1d6132e2a2b1217567b88ddd6d11662afd4001df (patch) | |
| tree | 08b4de0651659ceddf2b3e4d6f23140437c6315d /boot/image-fit-sig.c | |
| parent | f38956a687c42db8d9736e09df2d68705369950e (diff) | |
global: Use CONFIG_XPL_BUILD instead of CONFIG_SPL_BUILD
Complete this rename for all directories outside arch/ board/ drivers/
and include/
Use the new symbol to refer to any 'SPL' build, including TPL and VPL
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot/image-fit-sig.c')
| -rw-r--r-- | boot/image-fit-sig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/image-fit-sig.c b/boot/image-fit-sig.c index fe328df4a85..35873b1fb0e 100644 --- a/boot/image-fit-sig.c +++ b/boot/image-fit-sig.c @@ -48,7 +48,7 @@ struct image_region *fit_region_make_list(const void *fit, * Use malloc() except in SPL (to save code size). In SPL the caller * must allocate the array. */ - if (!IS_ENABLED(CONFIG_SPL_BUILD) && !region) + if (!IS_ENABLED(CONFIG_XPL_BUILD) && !region) region = calloc(sizeof(*region), count); if (!region) return NULL; |
