summaryrefslogtreecommitdiff
path: root/arch/arc
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-05 15:40:13 -0700
committerTom Rini <trini@konsulko.com>2023-02-10 07:41:39 -0500
commit210af54947e1b88f1fb961fec51d6427f5ec8575 (patch)
treed9f4562cc13b1e285bd96497f68bca652d8c4cbd /arch/arc
parent24f95e141e35a794213f1bb1b969ec91f057e063 (diff)
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>
Diffstat (limited to 'arch/arc')
-rw-r--r--arch/arc/lib/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/lib/bootm.c b/arch/arc/lib/bootm.c
index 07b2c1540d..2dd003445f 100644
--- a/arch/arc/lib/bootm.c
+++ b/arch/arc/lib/bootm.c
@@ -29,7 +29,7 @@ static int boot_prep_linux(struct bootm_headers *images)
{
int ret;
- if (CONFIG_IS_ENABLED(LMB)) {
+ if (IS_ENABLED(CONFIG_LMB)) {
ret = image_setup_linux(images);
if (ret)
return ret;