mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
efi_stub: Use efi_uintn_t
Commitf5a2a93892
("efi_loader: consistently use efi_uintn_t in boot services") changed the internal EFI API header without adapting its existing EFI stub users. Let's adapt the EFI stub as well. Fixes:f5a2a93892
("efi_loader: consistently use efi_uintn_t in boot services") Signed-off-by: Alexander Graf <agraf@suse.de> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
3bb74f9800
commit
bb0bb91cf0
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ efi_status_t efi_main(efi_handle_t image, struct efi_system_table *sys_table)
|
||||||
struct efi_boot_services *boot = sys_table->boottime;
|
struct efi_boot_services *boot = sys_table->boottime;
|
||||||
struct efi_mem_desc *desc;
|
struct efi_mem_desc *desc;
|
||||||
struct efi_entry_memmap map;
|
struct efi_entry_memmap map;
|
||||||
ulong key, desc_size, size;
|
efi_uintn_t key, desc_size, size;
|
||||||
efi_status_t ret;
|
efi_status_t ret;
|
||||||
u32 version;
|
u32 version;
|
||||||
int cs32;
|
int cs32;
|
||||||
|
|
Loading…
Reference in a new issue