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 commit59c0ea5df3
("lmb: Add support of flags for no-map properties"), and then copied further into commited17a33fed
("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>
This commit is contained in:
@@ -202,7 +202,7 @@ static long lmb_add_region_flags(struct alist *lmb_rgn_lst, phys_addr_t base,
|
||||
for (i = 0; i < lmb_rgn_lst->count; i++) {
|
||||
phys_addr_t rgnbase = rgn[i].base;
|
||||
phys_size_t rgnsize = rgn[i].size;
|
||||
phys_size_t rgnflags = rgn[i].flags;
|
||||
enum lmb_flags rgnflags = rgn[i].flags;
|
||||
|
||||
ret = lmb_addrs_adjacent(base, size, rgnbase, rgnsize);
|
||||
if (ret > 0) {
|
||||
|
Reference in New Issue
Block a user