mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
efi_loader: fix signature of efi_disconnect_controller
Handles should be passed as efi_handle_t and not as void *. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
f0959dbee2
commit
3ebcd0071f
2 changed files with 8 additions and 5 deletions
|
@ -1649,9 +1649,10 @@ static efi_status_t EFIAPI efi_set_watchdog_timer(unsigned long timeout,
|
|||
* @child_handle handle of the child to destroy
|
||||
* @return status code
|
||||
*/
|
||||
static efi_status_t EFIAPI efi_disconnect_controller(void *controller_handle,
|
||||
void *driver_image_handle,
|
||||
void *child_handle)
|
||||
static efi_status_t EFIAPI efi_disconnect_controller(
|
||||
efi_handle_t controller_handle,
|
||||
efi_handle_t driver_image_handle,
|
||||
efi_handle_t child_handle)
|
||||
{
|
||||
EFI_ENTRY("%p, %p, %p", controller_handle, driver_image_handle,
|
||||
child_handle);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue