summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSughosh Ganu <sughosh.ganu@linaro.org>2024-08-26 17:29:27 +0530
committerTom Rini <trini@konsulko.com>2024-09-03 14:08:50 -0600
commitc2c50d52d9474ed8d6796d3def2083d5ad549dcc (patch)
tree01ad71ddbb150229051ce0a0e0c7a5487a81d50b
parent30ffdd61ded011433bfbbd6a3d14fac24547ad54 (diff)
lmb: bootm: remove superfluous lmb stub functions
Remove a couple of superfluous LMB stub functions, and instead put a check for calling the lmb_reserve() function. Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
-rw-r--r--boot/bootm.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/boot/bootm.c b/boot/bootm.c
index ddede08979a..a61bbcfb45c 100644
--- a/boot/bootm.c
+++ b/boot/bootm.c
@@ -239,11 +239,6 @@ static int boot_get_kernel(const char *addr_fit, struct bootm_headers *images,
return 0;
}
-#if !CONFIG_IS_ENABLED(LMB)
-#define lmb_reserve(base, size)
-static inline void boot_start_lmb(void) { }
-#endif
-
static int bootm_start(void)
{
memset((void *)&images, 0, sizeof(images));
@@ -700,7 +695,9 @@ static int bootm_load_os(struct bootm_headers *images, int boot_progress)
images->os.end = relocated_addr + image_size;
}
- lmb_reserve(images->os.load, (load_end - images->os.load));
+ if (CONFIG_IS_ENABLED(LMB))
+ lmb_reserve(images->os.load, (load_end - images->os.load));
+
return 0;
}