diff options
author | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-30 06:05:06 +0000 |
---|---|---|
committer | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-30 06:05:06 +0000 |
commit | fe1e36e550c6ffcd2561903d434683d3939e1942 (patch) | |
tree | 31618cec624f5f927f9ce4c5745fb995095879bf /MdeModulePkg/Library/DxeUdpIoLib | |
parent | fe467413d2230a2170bb3ffc91e5e8c909920628 (diff) | |
download | edk2-platforms-fe1e36e550c6ffcd2561903d434683d3939e1942.tar.xz |
Patch to remove STATIC modifier. This is on longer recommended by EFI Framework coding style. All duplicated symbols has been renamed accordingly.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6296 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Library/DxeUdpIoLib')
-rw-r--r-- | MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.c b/MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.c index ff9cb364f7..c24f88827e 100644 --- a/MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.c +++ b/MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.c @@ -32,14 +32,12 @@ Abstract: #include <Library/MemoryAllocationLib.h>
#include <Library/BaseMemoryLib.h>
-STATIC
VOID
EFIAPI
UdpIoOnDgramSentDpc (
IN VOID *Context
);
-STATIC
VOID
EFIAPI
UdpIoOnDgramSent (
@@ -47,7 +45,6 @@ UdpIoOnDgramSent ( IN VOID *Context
);
-STATIC
VOID
EFIAPI
UdpIoOnDgramRcvd (
@@ -69,7 +66,6 @@ UdpIoOnDgramRcvd ( @return The wrapped transmission request or NULL if failed to allocate resources.
**/
-STATIC
UDP_TX_TOKEN *
UdpIoWrapTx (
IN UDP_IO_PORT *UdpIo,
@@ -355,7 +351,6 @@ FREE_MEM: @return None
**/
-STATIC
VOID
UdpIoCancelDgrams (
IN UDP_IO_PORT *UdpIo,
@@ -476,7 +471,6 @@ UdpIoCleanPort ( @return None
**/
-STATIC
VOID
EFIAPI
UdpIoOnDgramSentDpc (
@@ -503,7 +497,6 @@ UdpIoOnDgramSentDpc ( @return None
**/
-STATIC
VOID
EFIAPI
UdpIoOnDgramSent (
@@ -579,7 +572,6 @@ UdpIoSendDatagram ( @return TRUE if the packet is to be cancelled, otherwise FALSE.
**/
-STATIC
BOOLEAN
UdpIoCancelSingleDgram (
IN UDP_TX_TOKEN *Token,
@@ -626,7 +618,6 @@ UdpIoCancelSentDatagram ( @return None
**/
-STATIC
VOID
UdpIoRecycleDgram (
IN VOID *Context
@@ -649,7 +640,6 @@ UdpIoRecycleDgram ( @return None
**/
-STATIC
VOID
EFIAPI
UdpIoOnDgramRcvdDpc (
@@ -730,7 +720,6 @@ UdpIoOnDgramRcvdDpc ( @return None
**/
-STATIC
VOID
EFIAPI
UdpIoOnDgramRcvd (
|