diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-05 15:40:13 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-10 07:41:39 -0500 |
commit | 210af54947e1b88f1fb961fec51d6427f5ec8575 (patch) | |
tree | d9f4562cc13b1e285bd96497f68bca652d8c4cbd /arch/m68k | |
parent | 24f95e141e35a794213f1bb1b969ec91f057e063 (diff) | |
download | u-boot-210af54947e1b88f1fb961fec51d6427f5ec8575.zip u-boot-210af54947e1b88f1fb961fec51d6427f5ec8575.tar.gz u-boot-210af54947e1b88f1fb961fec51d6427f5ec8575.tar.bz2 |
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/m68k')
-rw-r--r-- | arch/m68k/lib/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/lib/bootm.c b/arch/m68k/lib/bootm.c index c1c9bdc..f18bed2 100644 --- a/arch/m68k/lib/bootm.c +++ b/arch/m68k/lib/bootm.c @@ -60,7 +60,7 @@ int do_bootm_linux(int flag, int argc, char *const argv[], } set_clocks_in_mhz(kbd); - if (CONFIG_IS_ENABLED(LMB)) { + if (IS_ENABLED(CONFIG_LMB)) { ret = image_setup_linux(images); if (ret) goto error; |