From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id F11F21A1E46 for ; Fri, 30 Sep 2016 01:18:07 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga105.fm.intel.com with ESMTP; 30 Sep 2016 01:18:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,271,1473145200"; d="scan'208";a="14847779" Received: from ray-dev.ccr.corp.intel.com ([10.239.9.25]) by fmsmga005.fm.intel.com with ESMTP; 30 Sep 2016 01:18:06 -0700 From: Ruiyu Ni To: edk2-devel@lists.01.org Cc: Ruiyu Ni , Chen A Chen , Jaben Carsey Date: Fri, 30 Sep 2016 16:17:50 +0800 Message-Id: <20160930081752.569916-10-ruiyu.ni@intel.com> X-Mailer: git-send-email 2.9.0.windows.1 In-Reply-To: <20160930081752.569916-1-ruiyu.ni@intel.com> References: <20160930081752.569916-1-ruiyu.ni@intel.com> Subject: [PATCH 09/11] ShellPkg/UefiShellCommandLib: Remove unnecessary EFIAPI X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Sep 2016 08:18:08 -0000 From: Ruiyu Ni Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Chen A Chen Cc: Jaben Carsey Cc: Ruiyu Ni --- ShellPkg/Library/UefiShellCommandLib/ConsistMapping.c | 3 --- ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c | 6 ------ 2 files changed, 9 deletions(-) diff --git a/ShellPkg/Library/UefiShellCommandLib/ConsistMapping.c b/ShellPkg/Library/UefiShellCommandLib/ConsistMapping.c index 979693a..09f2c56 100755 --- a/ShellPkg/Library/UefiShellCommandLib/ConsistMapping.c +++ b/ShellPkg/Library/UefiShellCommandLib/ConsistMapping.c @@ -1333,7 +1333,6 @@ DEV_PATH_CONSIST_MAPPING_TABLE DevPathConsistMappingTable[] = { @retval FALSE The node is not Hi. **/ BOOLEAN -EFIAPI IsHIDevicePathNode ( IN EFI_DEVICE_PATH_PROTOCOL *DevicePathNode ) @@ -1370,7 +1369,6 @@ IsHIDevicePathNode ( @return the device path portion that is Hi. **/ EFI_DEVICE_PATH_PROTOCOL * -EFIAPI GetHIDevicePath ( IN EFI_DEVICE_PATH_PROTOCOL *DevicePath ) @@ -1425,7 +1423,6 @@ GetHIDevicePath ( @return EFI_SUCCESS Always returns success. **/ EFI_STATUS -EFIAPI GetDeviceConsistMappingInfo ( IN DEVICE_CONSIST_MAPPING_INFO *MappingItem, IN EFI_DEVICE_PATH_PROTOCOL *DevicePath diff --git a/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c b/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c index b65676b..1391768 100644 --- a/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c +++ b/ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.c @@ -128,7 +128,6 @@ ShellCommandLibConstructor ( @param[in] List The list to free. **/ VOID -EFIAPI FreeFileHandleList ( IN BUFFER_LIST *List ) @@ -244,7 +243,6 @@ ShellCommandLibDestructor ( @retval NULL no dynamic command protocol instance found for name **/ CONST EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL * -EFIAPI ShellCommandFindDynamicCommand ( IN CONST CHAR16 *CommandString ) @@ -293,7 +291,6 @@ ShellCommandFindDynamicCommand ( @param[in] CommandString The command string to check for on the list. **/ BOOLEAN -EFIAPI ShellCommandDynamicCommandExists ( IN CONST CHAR16 *CommandString ) @@ -307,7 +304,6 @@ ShellCommandDynamicCommandExists ( @param[in] CommandString The command string to check for on the list. **/ BOOLEAN -EFIAPI ShellCommandIsCommandOnInternalList( IN CONST CHAR16 *CommandString ) @@ -365,7 +361,6 @@ ShellCommandIsCommandOnList( @return String of help text. Caller required to free. **/ CHAR16* -EFIAPI ShellCommandGetDynamicCommandHelp( IN CONST CHAR16 *CommandString ) @@ -392,7 +387,6 @@ ShellCommandGetDynamicCommandHelp( @return String of help text. Caller reuiqred to free. **/ CHAR16* -EFIAPI ShellCommandGetInternalCommandHelp( IN CONST CHAR16 *CommandString ) -- 2.9.0.windows.1