diff options
author | Tom Rini <trini@konsulko.com> | 2020-06-25 13:33:15 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-25 13:33:15 -0400 |
commit | eae62ae8de1893f7cf08e276ab841d3f99245603 (patch) | |
tree | f3802668f5da7e8a137d4fa752935121d3afaacf /cmd | |
parent | 4b78b5bfdae8d655924d01aa332ea179c2885c62 (diff) | |
parent | d80dd9e7853256f27847238771bf34c7157b8894 (diff) |
Merge tag 'efi-2020-07-rc6' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-07-rc6
Corrections for variable definitions are provided:
* Correct size of secure boot related UEFI variables.
* Do not use int for storing an enum.
* Replace fdt_addr by fdt_size where needed.
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bootefi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/bootefi.c b/cmd/bootefi.c index ac713cad1b..8269153973 100644 --- a/cmd/bootefi.c +++ b/cmd/bootefi.c @@ -189,7 +189,8 @@ static void efi_carve_out_dt_rsv(void *fdt) if (nodeoffset >= 0) { subnode = fdt_first_subnode(fdt, nodeoffset); while (subnode >= 0) { - fdt_addr_t fdt_addr, fdt_size; + fdt_addr_t fdt_addr; + fdt_size_t fdt_size; /* check if this subnode has a reg property */ fdt_addr = fdtdec_get_addr_size_auto_parent( |