mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
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>
This commit is contained in:
parent
c6d876fa2d
commit
cc8e34178b
2 changed files with 8 additions and 8 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue