]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Add () after function name so that Doxygen can create reference in doc.
authorjgong5 <jgong5@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 29 Dec 2008 03:49:50 +0000 (03:49 +0000)
committerjgong5 <jgong5@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 29 Dec 2008 03:49:50 +0000 (03:49 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7145 6f19259b-4bc3-4df7-8a09-765794883524

MdeModulePkg/Include/Library/UdpIoLib.h
MdeModulePkg/Library/DxeUdpIoLib/DxeUdpIoLib.c

index 1837e309a2b712c91e46e8858c16f59dd6ac8698..1562d866d5d25123cf2978631862ae820e325bf7 100644 (file)
@@ -46,15 +46,15 @@ typedef struct {
   Prototype called when receiving or sending packets from/to a UDP point.\r
 \r
   This prototype is used by both receive and sending when calling\r
-  UdpIoRecvDatagram or UdpIoSendDatagram. When receiving, Netbuf is allocated by\r
+  UdpIoRecvDatagram() or UdpIoSendDatagram(). When receiving, Netbuf is allocated by\r
   UDP access point, and released by user. When sending, the NetBuf is from user,\r
   and provided to the callback as a reference.\r
   \r
   @param Packet       Packet received or sent\r
   @param Points       The Udp4 address pair corresponds to the Udp4 IO\r
   @param IoStatus     Packet receiving or sending status\r
-  @param Context      User-defined data when calling UdpIoRecvDatagram or\r
-                      UdpIoSendDatagram\r
+  @param Context      User-defined data when calling UdpIoRecvDatagram() or\r
+                      UdpIoSendDatagram()\r
 \r
   @return None\r
 **/\r
@@ -138,14 +138,14 @@ struct _UDP_IO_PORT {
 /**\r
   Prototype called when UdpIo Library configures a Udp4 instance.\r
   \r
-  The prototype is set and called when creating a UDP_IO_PORT in UdpIoCreatePort.\r
+  The prototype is set and called when creating a UDP_IO_PORT in UdpIoCreatePort().\r
   \r
   @param UdpIo         The UDP_IO_PORT to configure\r
-  @param Context       User-defined data when calling UdpIoCreatePort\r
+  @param Context       User-defined data when calling UdpIoCreatePort()\r
   \r
   @retval EFI_SUCCESS  The configure process succeeds\r
   @retval Others       The UDP_IO_PORT fails to configure indicating\r
-                       UdpIoCreatePort should fail\r
+                       UdpIoCreatePort() should fail\r
 **/\r
 typedef\r
 EFI_STATUS\r
@@ -158,7 +158,7 @@ EFI_STATUS
   The select function to decide whether to cancel the UDP_TX_TOKEN. It is used\r
   \r
   @param Token        The UDP_TX_TOKEN to decide whether to cancel\r
-  @param Context      User-defined data in UdpIoCancelDgrams\r
+  @param Context      User-defined data in UdpIoCancelDgrams()\r
   \r
   @retval TRUE        To cancel the UDP_TX_TOKEN\r
   @retval FALSE       Do not cancel this UDP_TX_TOKEN\r
index 21af998d25449a456c42c39c67e8aa4ef237fc20..9d924a51493ecc9ff060a1bd31c82be44e35020b 100644 (file)
@@ -198,7 +198,7 @@ UdpIoOnDgramRcvdDpc (
 }\r
 \r
 /**\r
-  Request UdpIoOnDgramRcvdDpc as a DPC at TPL_CALLBACK.\r
+  Request UdpIoOnDgramRcvdDpc() as a DPC at TPL_CALLBACK.\r
 \r
   @param  Event                 The UDP receive request event.\r
   @param  Context               The UDP RX token.\r