summaryrefslogtreecommitdiff
path: root/include/lmb.h
diff options
context:
space:
mode:
authorSughosh Ganu <sughosh.ganu@linaro.org>2024-08-26 17:29:26 +0530
committerTom Rini <trini@konsulko.com>2024-09-03 14:08:50 -0600
commit30ffdd61ded011433bfbbd6a3d14fac24547ad54 (patch)
treea1461365237edeb4592161d20ef1bcc51a6fb319 /include/lmb.h
parentc7ce26cb368d12e88be3274ba1ed4cda58a15ad8 (diff)
lmb: remove lmb_init_and_reserve_range() function
With the move to make the LMB allocations persistent and the common memory regions being reserved during board init, there is no need for an explicit reservation of a memory range. Remove the lmb_init_and_reserve_range() function. Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/lmb.h')
-rw-r--r--include/lmb.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/lmb.h b/include/lmb.h
index 04558724a78..2f155d706ed 100644
--- a/include/lmb.h
+++ b/include/lmb.h
@@ -63,9 +63,6 @@ struct lmb {
*/
int lmb_init(void);
-void lmb_init_and_reserve_range(phys_addr_t base, phys_size_t size,
- void *fdt_blob);
-
/**
* lmb_add_memory() - Add memory range for LMB allocations
*