diff options
author | Simon Glass <sjg@chromium.org> | 2016-09-25 15:27:32 -0600 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2016-10-19 09:01:53 +0200 |
commit | e275458c2f011a7e66ac01e6558f15f4cf4972f9 (patch) | |
tree | 91ef693988635910ac328571dba7aa87b15ccd16 /include/efi_loader.h | |
parent | a0b49bc3341f8f19cbf57a56d110ab0fa8f39267 (diff) |
efi: Fix missing EFIAPI specifiers
These are missing in some functions. Add them to keep things consistent.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 1bc3b3357cf..871499f8fe5 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -95,7 +95,7 @@ void efi_net_set_dhcp_ack(void *pkt, int len); * Stub implementation for a protocol opener that just returns the handle as * interface */ -efi_status_t efi_return_handle(void *handle, +efi_status_t EFIAPI efi_return_handle(void *handle, efi_guid_t *protocol, void **protocol_interface, void *agent_handle, void *controller_handle, uint32_t attributes); |