public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Ruiyu Ni <ruiyu.ni@intel.com>
To: edk2-devel@lists.01.org
Cc: Ruiyu Ni <Ruiyu.ni@intel.com>,
	Chen A Chen <chen.a.chen@intel.com>,
	Jaben Carsey <jaben.carsey@intel.com>
Subject: [PATCH 11/11] ShellPkg/UefiShellNetwork1CommandsLib: Remove unnecessary EFIAPI
Date: Fri, 30 Sep 2016 16:17:52 +0800	[thread overview]
Message-ID: <20160930081752.569916-12-ruiyu.ni@intel.com> (raw)
In-Reply-To: <20160930081752.569916-1-ruiyu.ni@intel.com>

From: Ruiyu Ni <Ruiyu.ni@intel.com>

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Chen A Chen <chen.a.chen@intel.com>
Cc: Jaben Carsey <jaben.carsey@intel.com>
Cc: Ruiyu Ni <Ruiyu.ni@intel.com>
---
 ShellPkg/Library/UefiShellNetwork1CommandsLib/Ping.c | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/ShellPkg/Library/UefiShellNetwork1CommandsLib/Ping.c b/ShellPkg/Library/UefiShellNetwork1CommandsLib/Ping.c
index e2dc765..38625fe 100644
--- a/ShellPkg/Library/UefiShellNetwork1CommandsLib/Ping.c
+++ b/ShellPkg/Library/UefiShellNetwork1CommandsLib/Ping.c
@@ -148,7 +148,6 @@ typedef struct _PING_PRIVATE_DATA {
                        ones complement sum of 16 bit words
 **/
 UINT16
-EFIAPI
 NetChecksum (
   IN UINT8   *Buffer,
   IN UINT32  Length
@@ -231,7 +230,6 @@ EFI_CPU_ARCH_PROTOCOL    *gCpu = NULL;
   @retval the current tick value.
 **/
 UINT64
-EFIAPI
 ReadTime (
   VOID
   )
@@ -263,7 +261,6 @@ ReadTime (
 
 **/
 EFI_STATUS
-EFIAPI
 GetFrequency (
   VOID
   )
@@ -302,7 +299,6 @@ GetFrequency (
   @retval 0             The parameters were not valid.
 **/
 UINT64
-EFIAPI
 CalculateTick (
   IN UINT64    Begin,
   IN UINT64    End
@@ -321,7 +317,6 @@ CalculateTick (
   @param[in]    IpChoice  Whether the token is IPv4 or IPv6
 **/
 VOID
-EFIAPI
 PingDestroyTxInfo (
   IN PING_ICMPX_TX_INFO    *TxInfo,
   IN UINT32                IpChoice
@@ -393,7 +388,6 @@ PingDestroyTxInfo (
 
 **/
 EFI_STATUS
-EFIAPI
 Ping6MatchEchoReply (
   IN PING_PRIVATE_DATA           *Private,
   IN ICMPX_ECHO_REQUEST_REPLY    *Packet
@@ -569,7 +563,6 @@ ON_EXIT:
 
 **/
 PING_IPX_COMPLETION_TOKEN *
-EFIAPI
 PingGenerateToken (
   IN PING_PRIVATE_DATA    *Private,
   IN UINT64                TimeStamp,
@@ -672,7 +665,6 @@ PingGenerateToken (
 
 **/
 EFI_STATUS
-EFIAPI
 PingSendEchoRequest (
   IN PING_PRIVATE_DATA    *Private
   )
@@ -723,7 +715,6 @@ PingSendEchoRequest (
 
 **/
 EFI_STATUS
-EFIAPI
 Ping6ReceiveEchoReply (
   IN PING_PRIVATE_DATA    *Private
   )
@@ -835,7 +826,6 @@ Ping6OnTimerRoutine (
   @retval FALSE     It is not.
 **/
 BOOLEAN
-EFIAPI
 PingNetIp4IsLinkLocalAddr (
   IN CONST EFI_IPv4_ADDRESS *Address
   )
@@ -852,7 +842,6 @@ PingNetIp4IsLinkLocalAddr (
   @retval FALSE     It is not.
 **/
 BOOLEAN
-EFIAPI
 PingNetIp4IsUnspecifiedAddr (
   IN CONST EFI_IPv4_ADDRESS *Address
   )
@@ -872,7 +861,6 @@ PingNetIp4IsUnspecifiedAddr (
   @retval EFI_NOT_FOUND            The source address is not found.
 **/
 EFI_STATUS
-EFIAPI
 PingCreateIpInstance (
   IN  PING_PRIVATE_DATA    *Private
   )
@@ -1226,7 +1214,6 @@ ON_ERROR:
 
 **/
 VOID
-EFIAPI
 Ping6DestroyIp6Instance (
   IN PING_PRIVATE_DATA    *Private
   )
@@ -1265,7 +1252,6 @@ Ping6DestroyIp6Instance (
   @retval others         The ping processed unsuccessfully.
 **/
 SHELL_STATUS
-EFIAPI
 ShellPing (
   IN UINT32              SendNumber,
   IN UINT32              BufferSize,
-- 
2.9.0.windows.1



  parent reply	other threads:[~2016-09-30  8:18 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-30  8:17 [PATCH 00/11] Remove unnecessary EFIAPI Ruiyu Ni
2016-09-30  8:17 ` [PATCH 01/11] ShellPkg/Shell: " Ruiyu Ni
2016-09-30  8:17 ` [PATCH 02/11] ShellPkg/UefiShellDebug1CommandsLib: " Ruiyu Ni
2016-09-30  8:17 ` [PATCH 03/11] ShellPkg/UefiShellDriver1CommandsLib: " Ruiyu Ni
2016-09-30  8:17 ` [PATCH 04/11] ShellPkg/UefiShellLevel1CommandsLib: " Ruiyu Ni
2016-09-30  8:17 ` [PATCH 05/11] ShellPkg/UefiShellLevel2CommandsLib: " Ruiyu Ni
2017-08-03 19:06   ` Palmer, Thomas
2017-08-07  5:56     ` Ni, Ruiyu
2017-08-07 17:01       ` Palmer, Thomas
2017-08-09 23:39       ` Palmer, Thomas
2017-08-10  0:41         ` Ni, Ruiyu
2017-08-10  0:59           ` Palmer, Thomas
2016-09-30  8:17 ` [PATCH 06/11] ShellPkg/UefiShellLevel3CommandsLib: " Ruiyu Ni
2016-09-30  8:17 ` [PATCH 07/11] ShellPkg/UefiShellParsingLib: " Ruiyu Ni
2016-09-30  8:17 ` [PATCH 08/11] ShellPkg/UefiShellBcfgCommandLib: " Ruiyu Ni
2016-09-30  8:17 ` [PATCH 09/11] ShellPkg/UefiShellCommandLib: " Ruiyu Ni
2016-09-30  8:17 ` [PATCH 10/11] ShellPkg/UefiShellLib: " Ruiyu Ni
2016-09-30  8:17 ` Ruiyu Ni [this message]
2016-09-30 15:13 ` [PATCH 00/11] " Carsey, Jaben
2016-09-30 16:02   ` Ni, Ruiyu
2016-10-13  1:31 ` Ni, Ruiyu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160930081752.569916-12-ruiyu.ni@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox