mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-10-04 20:21:35 +02:00
efi_driver: fix efi_uc_stop()
We must always call EFI_EXIT() when returning from an EFIAPI function. Fixes: 05ef48a2484b ("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
@ -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…
x
Reference in New Issue
Block a user