diff options
author | Scott Duplichan <scott@notabs.org> | 2015-04-10 02:42:08 +0000 |
---|---|---|
committer | mauricema <mauricema@Edk2> | 2015-04-10 02:42:08 +0000 |
commit | 6d577625ed4eb154414e2b041a976eb6aac76f78 (patch) | |
tree | 0024e34b7f49a3446853b77ece29a697cd82f63b /CorebootModulePkg/CbSupportDxe | |
parent | 42e548a846cf93bd97f27220bc9c6b5e487e96fe (diff) | |
download | edk2-platforms-6d577625ed4eb154414e2b041a976eb6aac76f78.tar.xz |
CorebootModulePkg/CbSupportDxe: Add EFIAPI to CbDxeEntryPoint
All image entry point functions must use EFIAPI.
Some GCC toolchains will have a build error without this fix.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Scott Duplichan <scott@notabs.org>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Prince Agyeman <prince.agyeman@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17154 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'CorebootModulePkg/CbSupportDxe')
-rwxr-xr-x | CorebootModulePkg/CbSupportDxe/CbSupportDxe.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CorebootModulePkg/CbSupportDxe/CbSupportDxe.c b/CorebootModulePkg/CbSupportDxe/CbSupportDxe.c index 8419c9d481..68baad6d00 100755 --- a/CorebootModulePkg/CbSupportDxe/CbSupportDxe.c +++ b/CorebootModulePkg/CbSupportDxe/CbSupportDxe.c @@ -123,6 +123,7 @@ OnReadyToBoot ( **/
EFI_STATUS
+EFIAPI
CbDxeEntryPoint (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
|