mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-27 15:12:21 +00:00
efi_loader: remove double EFI_EXIT() with efi_unsupported
Probably this went unnoticed before, but it causes problems with
addition of 804b1d73
("efi_loader: log EFI return values too")
Signed-off-by: Rob Clark <robdclark@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
a17e62cc53
commit
b5104821c1
1 changed files with 2 additions and 2 deletions
|
@ -141,7 +141,7 @@ static unsigned long EFIAPI efi_raise_tpl(UINTN new_tpl)
|
|||
static void EFIAPI efi_restore_tpl(UINTN old_tpl)
|
||||
{
|
||||
EFI_ENTRY("0x%zx", old_tpl);
|
||||
EFI_EXIT(efi_unsupported(__func__));
|
||||
efi_unsupported(__func__);
|
||||
}
|
||||
|
||||
static efi_status_t EFIAPI efi_allocate_pages_ext(int type, int memory_type,
|
||||
|
@ -818,7 +818,7 @@ static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
|
|||
{
|
||||
EFI_ENTRY("%ld, 0x%"PRIx64", %ld, %p", timeout, watchdog_code,
|
||||
data_size, watchdog_data);
|
||||
return EFI_EXIT(efi_unsupported(__func__));
|
||||
return efi_unsupported(__func__);
|
||||
}
|
||||
|
||||
static efi_status_t EFIAPI efi_connect_controller(
|
||||
|
|
Loading…
Reference in a new issue