]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
lmb: remove the unused board_lmb_reserve() function
authorSughosh Ganu <sughosh.ganu@linaro.org>
Mon, 26 Aug 2024 11:59:31 +0000 (17:29 +0530)
committerTom Rini <trini@konsulko.com>
Tue, 3 Sep 2024 20:08:50 +0000 (14:08 -0600)
The board_lmb_reserve() function is not being used, and currently
there is only an empty weak function defined. Remove this unused
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>
include/lmb.h
lib/lmb.c

index fb1a6db8e2b7540f7496b57d11c652b1f4cce509..fc2daaa7bfcdf64e305782d25520310cecf83d62 100644 (file)
@@ -107,8 +107,6 @@ long lmb_free(phys_addr_t base, phys_size_t size);
 void lmb_dump_all(void);
 void lmb_dump_all_force(void);
 
-void board_lmb_reserve(void);
-
 struct lmb *lmb_get(void);
 int lmb_push(struct lmb *store);
 void lmb_pop(struct lmb *store);
index dbbc19ede927a1c850d6a2cdce14915dda1e50eb..9f1bb5ec7dea131eb880507a9169ca351823aa03 100644 (file)
--- a/lib/lmb.c
+++ b/lib/lmb.c
@@ -222,7 +222,6 @@ static void lmb_reserve_uboot_region(void)
 
 static void lmb_reserve_common(void *fdt_blob)
 {
-       board_lmb_reserve();
        lmb_reserve_uboot_region();
 
        if (CONFIG_IS_ENABLED(OF_LIBFDT) && fdt_blob)
@@ -690,11 +689,6 @@ int lmb_is_reserved_flags(phys_addr_t addr, int flags)
        return 0;
 }
 
-__weak void board_lmb_reserve(void)
-{
-       /* please define platform specific board_lmb_reserve() */
-}
-
 static int lmb_setup(void)
 {
        bool ret;