aboutsummaryrefslogtreecommitdiff
path: root/cmd/efidebug.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-03-16 08:21:51 -0400
committerTom Rini <trini@konsulko.com>2021-03-16 08:21:51 -0400
commiteed127dbd4082ba21fd420449e68d1ad177cdc4b (patch)
tree10ec8e7fb3a13eed9763de73a1e943810283d819 /cmd/efidebug.c
parent4103e13534141c31e4e9bf40848ab3a61dabce81 (diff)
parent75d48d11db2e2f07659abbbf2dc0483e929b3fc2 (diff)
Merge tag 'efi-2021-04-rc5' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2021-04-rc5 Bug fixes: * fix memory type for memory reservation block * illegal cast to pointer in initrddump * fix compiler warnings Documentation: * move README.dfu to HTML documentation
Diffstat (limited to 'cmd/efidebug.c')
-rw-r--r--cmd/efidebug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/efidebug.c b/cmd/efidebug.c
index e4030f514a..55c7abe3d0 100644
--- a/cmd/efidebug.c
+++ b/cmd/efidebug.c
@@ -72,7 +72,7 @@ static int do_efi_capsule_update(struct cmd_tbl *cmdtp, int flag,
capsule->capsule_image_size);
}
- ret = EFI_CALL(RT->update_capsule(&capsule, 1, (u64)NULL));
+ ret = EFI_CALL(RT->update_capsule(&capsule, 1, 0));
if (ret) {
printf("Cannot handle a capsule at %p", capsule);
return CMD_RET_FAILURE;