diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-05 15:40:19 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-10 07:41:39 -0500 |
commit | 00ba40fa3e507fd5bba9cb0fde71f17e3ecbb4c6 (patch) | |
tree | 452745fd350a8c20549621d9ac629de7c3d68ca1 /common/event.c | |
parent | 0ab3609061c90ed06f03171622894e54ff10f575 (diff) | |
download | u-boot-00ba40fa3e507fd5bba9cb0fde71f17e3ecbb4c6.tar.gz u-boot-00ba40fa3e507fd5bba9cb0fde71f17e3ecbb4c6.tar.bz2 u-boot-00ba40fa3e507fd5bba9cb0fde71f17e3ecbb4c6.zip |
Correct SPL uses of NEEDS_MANUAL_RELOC
This converts 3 usages of this option to the non-SPL form, since there is
no SPL_NEEDS_MANUAL_RELOC defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/event.c')
-rw-r--r-- | common/event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/event.c b/common/event.c index c312556490..164c95f8f5 100644 --- a/common/event.c +++ b/common/event.c @@ -155,7 +155,7 @@ void event_show_spy_list(void) } } -#if CONFIG_IS_ENABLED(NEEDS_MANUAL_RELOC) +#if IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC) int event_manual_reloc(void) { struct evspy_info *spy, *end; |