mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-20 20:04:46 +00:00
efi_driver: fix efi_uc_stop()
We must always call EFI_EXIT() when returning from an EFIAPI function.
Fixes: 05ef48a248
("efi_driver: EFI block driver")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
parent
4d9668befc
commit
fcdf531dbc
1 changed files with 3 additions and 2 deletions
|
@ -225,9 +225,10 @@ static efi_status_t EFIAPI efi_uc_stop(
|
|||
ret = disconnect_child(controller_handle,
|
||||
child_handle_buffer[i]);
|
||||
if (ret != EFI_SUCCESS)
|
||||
return ret;
|
||||
goto out;
|
||||
}
|
||||
return EFI_SUCCESS;
|
||||
ret = EFI_SUCCESS;
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* Destroy all children */
|
||||
|
|
Loading…
Add table
Reference in a new issue