mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-16 14:08:45 +00:00
efi_loader: address of the simple file system protocol
When installing the the simple file system protocol we have to path the address of the structure and not the address of a pointer to the structure. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
04298686a4
commit
22de1de905
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ static void efi_disk_add_dev(const char *name,
|
|||
diskobj->dp);
|
||||
ret = efi_add_protocol(diskobj->parent.handle,
|
||||
&efi_simple_file_system_protocol_guid,
|
||||
&diskobj->volume);
|
||||
diskobj->volume);
|
||||
if (ret != EFI_SUCCESS)
|
||||
goto out_of_memory;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue