mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
efi_loader: DisconnectController() with no driver
If DisconnectController() is called and no driver is managing ControllerHandle, return EFI_SUCCESS. UEFI SCT II 2017, 3.3.12 DisconnectController(), 5.1.3.12.4 - 5.1.3.12.6 Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
8a802a2eef
commit
66ca24a9a0
1 changed files with 7 additions and 2 deletions
|
@ -1134,11 +1134,15 @@ static efi_status_t efi_get_drivers(efi_handle_t handle,
|
|||
++count;
|
||||
}
|
||||
}
|
||||
*number_of_drivers = 0;
|
||||
if (!count) {
|
||||
*driver_handle_buffer = NULL;
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
/*
|
||||
* Create buffer. In case of duplicate driver assignments the buffer
|
||||
* will be too large. But that does not harm.
|
||||
*/
|
||||
*number_of_drivers = 0;
|
||||
*driver_handle_buffer = calloc(count, sizeof(efi_handle_t));
|
||||
if (!*driver_handle_buffer)
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
|
@ -1194,7 +1198,8 @@ static efi_status_t efi_disconnect_all_drivers
|
|||
&driver_handle_buffer);
|
||||
if (ret != EFI_SUCCESS)
|
||||
return ret;
|
||||
|
||||
if (!number_of_drivers)
|
||||
return EFI_SUCCESS;
|
||||
ret = EFI_NOT_FOUND;
|
||||
while (number_of_drivers) {
|
||||
r = EFI_CALL(efi_disconnect_controller(
|
||||
|
|
Loading…
Reference in a new issue