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 D3ECF1A1E46 for ; Fri, 30 Sep 2016 01:18:06 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga105.fm.intel.com with ESMTP; 30 Sep 2016 01:18:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,271,1473145200"; d="scan'208";a="14847769" Received: from ray-dev.ccr.corp.intel.com ([10.239.9.25]) by fmsmga005.fm.intel.com with ESMTP; 30 Sep 2016 01:18:05 -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:49 +0800 Message-Id: <20160930081752.569916-9-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 08/11] ShellPkg/UefiShellBcfgCommandLib: 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:07 -0000 From: Ruiyu Ni Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Chen A Chen Cc: Jaben Carsey Cc: Ruiyu Ni --- .../Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c b/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c index e2306bf..dc3714d 100644 --- a/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c +++ b/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c @@ -89,7 +89,6 @@ typedef struct { @retval other A error occured. **/ EFI_STATUS -EFIAPI UpdateOptionalData( UINT16 Index, UINTN DataSize, @@ -175,7 +174,6 @@ UpdateOptionalData( @retval other A error occured. **/ EFI_STATUS -EFIAPI GetBootOptionCrc( UINT32 *Crc, UINT16 BootIndex @@ -232,7 +230,6 @@ GetBootOptionCrc( @sa HandleProtocol **/ EFI_STATUS -EFIAPI GetDevicePathForDriverHandle ( IN EFI_HANDLE TheHandle, IN OUT EFI_DEVICE_PATH_PROTOCOL **FilePath @@ -295,7 +292,6 @@ GetDevicePathForDriverHandle ( @retval SHELL_INVALID_PARAMETER A parameter was invalid. **/ SHELL_STATUS -EFIAPI BcfgAdd( IN UINTN Position, IN CONST CHAR16 *File, @@ -619,7 +615,6 @@ BcfgAdd( @retval SHELL_INVALID_PARAMETER A parameter was invalid. **/ SHELL_STATUS -EFIAPI BcfgRemove( IN CONST BCFG_OPERATION_TARGET Target, IN CONST UINT16 *CurrentOrder, @@ -680,7 +675,6 @@ BcfgRemove( @retval SHELL_INVALID_PARAMETER A parameter was invalid. **/ SHELL_STATUS -EFIAPI BcfgMove( IN CONST BCFG_OPERATION_TARGET Target, IN CONST UINT16 *CurrentOrder, @@ -741,7 +735,6 @@ BcfgMove( @retval SHELL_SUCCESS The operation was succesful. **/ SHELL_STATUS -EFIAPI BcfgAddOpt( IN CONST CHAR16 *OptData, IN CONST UINT16 *CurrentOrder, @@ -1028,7 +1021,6 @@ BcfgAddOpt( @retval SHELL_INVALID_PARAMETER A parameter was invalid. **/ SHELL_STATUS -EFIAPI BcfgDisplayDump( IN CONST CHAR16 *Op, IN CONST UINTN OrderCount, @@ -1153,7 +1145,6 @@ Cleanup: @param[in] Struct The stuct to initialize. **/ VOID -EFIAPI InitBcfgStruct( IN BGFG_OPERATION *Struct ) -- 2.9.0.windows.1