diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-12-28 12:41:15 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2019-02-13 09:40:05 +0100 |
commit | cc8e34178b5f141ed997843e86248e4d53f37298 (patch) | |
tree | 816835f7a9733b6e261cd49022d045bab12881a4 /include | |
parent | c6d876fa2d7f9fde0fae9203ec1f047df9bc1f59 (diff) | |
download | u-boot-cc8e34178b5f141ed997843e86248e4d53f37298.zip u-boot-cc8e34178b5f141ed997843e86248e4d53f37298.tar.gz u-boot-cc8e34178b5f141ed997843e86248e4d53f37298.tar.bz2 |
efi_loader: signature of StartImage and Exit
We use u16* for Unicode strings and efi_uintn_t for UINTN. Correct the
signature of efi_exit() and efi_start_image().
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/efi_api.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 0e5c6e9..4389dbe 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -115,11 +115,11 @@ struct efi_boot_services { struct efi_device_path *file_path, void *source_buffer, efi_uintn_t source_size, efi_handle_t *image); efi_status_t (EFIAPI *start_image)(efi_handle_t handle, - unsigned long *exitdata_size, - s16 **exitdata); + efi_uintn_t *exitdata_size, + u16 **exitdata); efi_status_t (EFIAPI *exit)(efi_handle_t handle, efi_status_t exit_status, - unsigned long exitdata_size, s16 *exitdata); + 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); |