From 667d7146501af0de63e0b28cd00dd1a5125540ad Mon Sep 17 00:00:00 2001 From: Ruiyu Ni Date: Thu, 10 Nov 2016 14:58:20 +0800 Subject: [PATCH] ShellPkg/ShellCommandLib: Add missing EFIAPI for public library APIs DumpHex() and CatSDumpHex() are public library APIs but don't have EFIAPI modifier. Add the missing EFIAPI. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni Reviewed-by: Jaben Carsey --- ShellPkg/Include/Library/ShellCommandLib.h | 2 ++ ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ShellPkg/Include/Library/ShellCommandLib.h b/ShellPkg/Include/Library/ShellCommandLib.h index 08de1332c7..e9a2c0365d 100644 --- a/ShellPkg/Include/Library/ShellCommandLib.h +++ b/ShellPkg/Include/Library/ShellCommandLib.h @@ -694,6 +694,7 @@ FreeBufferList ( @param[in] UserData Pointer to some data. **/ VOID +EFIAPI DumpHex ( IN UINTN Indent, IN UINTN Offset, @@ -711,6 +712,7 @@ DumpHex ( @param[in] UserData The data to print out. **/ CHAR16* +EFIAPI CatSDumpHex ( IN CHAR16 *Buffer, IN UINTN Indent, diff --git a/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c b/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c index 139176816a..a2ebc8f820 100644 --- a/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c +++ b/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c @@ -1,7 +1,7 @@ /** @file Provides interface to shell internal functions for shell commands. - Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.
+ Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.
(C) Copyright 2013-2015 Hewlett-Packard Development Company, L.P.
(C) Copyright 2016 Hewlett Packard Enterprise Development LP
@@ -1715,6 +1715,7 @@ FreeBufferList ( @param[in] UserData The data to print out. **/ VOID +EFIAPI DumpHex ( IN UINTN Indent, IN UINTN Offset, @@ -1767,6 +1768,7 @@ DumpHex ( @param[in] UserData The data to print out. **/ CHAR16* +EFIAPI CatSDumpHex ( IN CHAR16 *Buffer, IN UINTN Indent,