diff options
author | Heinrich Schuchardt | 2020-06-30 14:12:43 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2020-06-30 14:16:20 +0200 |
commit | 039d4f50e4894fc5176d4913e68fb8d6a38571cf (patch) | |
tree | 16f6b5944f357c5b8eeb04fa96fc513f21e27f63 /cmd | |
parent | e4c1c48eebd072b2fa6f27fd9b7baa731350ebe8 (diff) |
efi_loader: incorrect check against FDT_ADDR_T_NONE
With commit 0d7c2913fdf7 ("cmd: bootefi: Honor the address & size cells
properties correctly") addr was replaced by fdt_addr. But not in the check
against FDT_ADDR_T_NONE.
Fixes: 0d7c2913fdf7 ("cmd: bootefi: Honor the address & size cells properties
correctly")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bootefi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bootefi.c b/cmd/bootefi.c index 82691539737..57552f99fcf 100644 --- a/cmd/bootefi.c +++ b/cmd/bootefi.c @@ -200,7 +200,7 @@ static void efi_carve_out_dt_rsv(void *fdt) * The /reserved-memory node may have children with * a size instead of a reg property. */ - if (addr != FDT_ADDR_T_NONE && + if (fdt_addr != FDT_ADDR_T_NONE && fdtdec_get_is_enabled(fdt, subnode)) efi_reserve_memory(fdt_addr, fdt_size); subnode = fdt_next_subnode(fdt, subnode); |