]> git.dujemihanovic.xyz Git - u-boot.git/commit
lmb: Remove lmb_alloc_flags()
authorIlias Apalodimas <ilias.apalodimas@linaro.org>
Wed, 23 Oct 2024 15:26:36 +0000 (18:26 +0300)
committerTom Rini <trini@konsulko.com>
Tue, 29 Oct 2024 22:17:47 +0000 (16:17 -0600)
commitede2361998e5e2e6d89abb08f1f0c816d63ed221
tree742e8626096b12523dddee1f072a3e3c03db0918
parentf6fb6a885120187ddcff9489ff84b1405eb132fa
lmb: Remove lmb_alloc_flags()

lmb_alloc_flags() & lmb_alloc_base_flags() are just a wrappers for
_lmb_alloc_base(). Since the only difference is the max address of the
allowed allocation which _lmb_alloc_base() already supports with the
LMB_ALLOC_ANYWHERE flag, remove one of them.

Keep the lmb_alloc_base_flags() which also prints an error on failures
and adjust efi_allocate_pages() to only use one of them.

While at it clean up the duplicate function description from the header
file.

Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
include/lmb.h
lib/efi_loader/efi_memory.c
lib/lmb.c