commit | ae7ed576e0addefafac15fd9b37b18e54aa11910 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sun Feb 05 15:40:13 2023 -0700 |
committer | Tom Rini <trini@konsulko.com> | Fri Feb 10 07:41:39 2023 -0500 |
tree | d9f4562cc13b1e285bd96497f68bca652d8c4cbd | |
parent | 34d37a6f6992fa2f3e3374e23bef6196743b1472 [diff] [blame] |
Correct SPL uses of LMB This converts 9 usages of this option to the non-SPL form, since there is no SPL_LMB defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/arch/arc/lib/bootm.c b/arch/arc/lib/bootm.c index 07b2c15..2dd0034 100644 --- a/arch/arc/lib/bootm.c +++ b/arch/arc/lib/bootm.c
@@ -29,7 +29,7 @@ { int ret; - if (CONFIG_IS_ENABLED(LMB)) { + if (IS_ENABLED(CONFIG_LMB)) { ret = image_setup_linux(images); if (ret) return ret;