summaryrefslogtreecommitdiff
path: root/include/efi.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-09-25 21:27:31 (GMT)
committerAlexander Graf <agraf@suse.de>2016-10-19 07:01:53 (GMT)
commita0b49bc3341f8f19cbf57a56d110ab0fa8f39267 (patch)
treecdec3f2ade388a094bbea94eafc3870210cf5b1b /include/efi.h
parent6fb580d7b41069461093296a0f1059cf294a44dd (diff)
downloadu-boot-fsl-qoriq-a0b49bc3341f8f19cbf57a56d110ab0fa8f39267.tar.xz
efi: Use asmlinkage for EFIAPI
This is required for x86 and is also correct for ARM (since it is empty). Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi.h')
-rw-r--r--include/efi.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/efi.h b/include/efi.h
index 5a3b8cf..d07187c 100644
--- a/include/efi.h
+++ b/include/efi.h
@@ -15,6 +15,7 @@
#ifndef _EFI_H
#define _EFI_H
+#include <linux/linkage.h>
#include <linux/string.h>
#include <linux/types.h>
@@ -22,7 +23,7 @@
/* EFI uses the Microsoft ABI which is not the default for GCC */
#define EFIAPI __attribute__((ms_abi))
#else
-#define EFIAPI
+#define EFIAPI asmlinkage
#endif
struct efi_device_path;