From: Heinrich Schuchardt Date: Fri, 19 Jan 2018 19:24:38 +0000 (+0100) Subject: efi_loader: address of the simple file system protocol X-Git-Tag: v2018.03-rc1~101^2~20 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=22de1de905885f2b89ea913e7ce0e18866b389cd;p=u-boot 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 Signed-off-by: Alexander Graf --- diff --git a/lib/efi_loader/efi_disk.c b/lib/efi_loader/efi_disk.c index d299fc8dea..85b4a147e2 100644 --- a/lib/efi_loader/efi_disk.c +++ b/lib/efi_loader/efi_disk.c @@ -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; }