diff options
| author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-11-06 21:17:48 +0100 | 
|---|---|---|
| committer | Alexander Graf <agraf@suse.de> | 2017-12-01 13:22:56 +0100 | 
| commit | f5a2a93892ff8a8f066bc9f84eb9f0cf35ba0c67 (patch) | |
| tree | 7bb87285533f9860b6c1af9993212e85722214ac /lib/efi_selftest/efi_selftest.c | |
| parent | 152cade32643fdbdd73614db4cfb159876b58262 (diff) | |
efi_loader: consistently use efi_uintn_t in boot services
Consistenly use efi_uintn_t wherever the UEFI spec uses
UINTN in boot services interfaces.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib/efi_selftest/efi_selftest.c')
| -rw-r--r-- | lib/efi_selftest/efi_selftest.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lib/efi_selftest/efi_selftest.c b/lib/efi_selftest/efi_selftest.c index b6bc4dd5c07..263b53f6724 100644 --- a/lib/efi_selftest/efi_selftest.c +++ b/lib/efi_selftest/efi_selftest.c @@ -32,9 +32,9 @@ static u16 reset_message[] = L"Selftest completed";   */  void efi_st_exit_boot_services(void)  { -	unsigned long map_size = 0; -	unsigned long map_key; -	unsigned long desc_size; +	efi_uintn_t map_size = 0; +	efi_uintn_t map_key; +	efi_uintn_t desc_size;  	u32 desc_version;  	efi_status_t ret;  	struct efi_mem_desc *memory_map; | 
