diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-05-05 21:58:35 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-05-07 21:10:04 +0200 |
commit | b015ab57bf558daa1c768995a7a7f1df2d40191e (patch) | |
tree | c3a03a121e334488fcf090fff9874cdc1e5d20ee /include/efi_api.h | |
parent | 470dfa50da799720ed6513b89b9237064415cb73 (diff) | |
download | u-boot-b015ab57bf558daa1c768995a7a7f1df2d40191e.tar.gz |
efi_loader: signature of ExitBootServices()
Consistently use efi_uintn_t as type of memory keys.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Alexander Graf <graf@amazon.com>
Diffstat (limited to 'include/efi_api.h')
-rw-r--r-- | include/efi_api.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index b2ae279747..755c405793 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -128,7 +128,8 @@ struct efi_boot_services { efi_status_t exit_status, efi_uintn_t exitdata_size, u16 *exitdata); efi_status_t (EFIAPI *unload_image)(efi_handle_t image_handle); - efi_status_t (EFIAPI *exit_boot_services)(efi_handle_t, unsigned long); + efi_status_t (EFIAPI *exit_boot_services)(efi_handle_t image_handle, + efi_uintn_t map_key); efi_status_t (EFIAPI *get_next_monotonic_count)(u64 *count); efi_status_t (EFIAPI *stall)(unsigned long usecs); |