[U-Boot] [PATCH] efi_loader: fix efi_exit

21 Sep
2017
21 Sep
'17
12:23 a.m.
efi_exit() already restores gd, so we shouldn't EFI_EXIT() on the otherside of the longjmp().
Signed-off-by: Rob Clark robdclark@gmail.com --- cmd/bootefi.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/cmd/bootefi.c b/cmd/bootefi.c index fdfed1be05..a049e5f64d 100644 --- a/cmd/bootefi.c +++ b/cmd/bootefi.c @@ -191,7 +191,6 @@ static unsigned long do_bootefi_exec(void *efi, void *fdt,
if (setjmp(&loaded_image_info.exit_jmp)) { ret = loaded_image_info.exit_status; - EFI_EXIT(ret); goto exit; }
--
2.13.5

21 Sep
21 Sep
9:04 a.m.
New subject: [U-Boot] efi_loader: fix efi_exit
efi_exit() already restores gd, so we shouldn't EFI_EXIT() on the otherside of the longjmp().
Signed-off-by: Rob Clark robdclark@gmail.com
Thanks, applied to efi-next
Alex
2793
Age (days ago)
2794
Last active (days ago)
1 comments
2 participants
participants (2)
-
Alexander Graf
-
Rob Clark