lmb: Fix flags data type in lmb_add_region_flags()
authorSam Protsenko <semen.protsenko@linaro.org>
Wed, 11 Dec 2024 02:25:47 +0000 (20:25 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 30 Dec 2024 19:20:24 +0000 (13:20 -0600)
commita59887d251307ad4ebc194b58ddb5af003e8fe06
treeccbebb7203f209bb05c1a36d449f648dc71a716b
parent7f296a9a707071277615e5957b89ebc4c24ee137
lmb: Fix flags data type in lmb_add_region_flags()

rgnflags variable in lmb_add_region_flags() has incorrect type: it's
declared as phys_size_t when it should be enum lmb_flags. That
copy-paste mistake was firstly introduced in commit 59c0ea5df33f ("lmb:
Add support of flags for no-map properties"), and then copied further
into commit ed17a33fed29 ("lmb: make LMB memory map persistent and
global"). Fix it by using the correct type to match struct lmb_region
field.

No functional change.

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Acked-by: Sughosh Ganu <sughosh.ganu@linaro.org>
lib/lmb.c