]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Fix function comment to follows doxygen format.
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 16 Jul 2008 09:29:20 +0000 (09:29 +0000)
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>
Wed, 16 Jul 2008 09:29:20 +0000 (09:29 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5497 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Include/Protocol/Pcd.h
MdePkg/Library/DxePcdLib/DxePcdLib.c
MdePkg/Library/PeiPcdLib/PeiPcdLib.c

index abccf87b4d54d1237fa2f7011fa2b0680b93c534..9344ad2262e6717018e9a9413d4542b5a59b7ec6 100644 (file)
@@ -252,7 +252,8 @@ UINT16
 \r
   @return The size 32-bit value for the PCD token.\r
   \r
-**/typedef\r
+**/\r
+typedef\r
 UINT32\r
 (EFIAPI *PCD_PROTOCOL_GET_EX_32)(\r
   IN CONST EFI_GUID    *Guid,\r
index 10d6a20381a1a490690012b54647f2b9e5e8d83d..ccf7b7d213a37612b26eaff816755ae884860a8d 100644 (file)
@@ -518,7 +518,7 @@ LibPcdSet64 (
   If SizeOfValue > 0 and Buffer is NULL, then ASSERT().\r
   \r
   @param[in]      TokenNumber   The PCD token number to set a current value for.\r
-  @param[in,out]  SizeOfBuffer  The size, in bytes, of Buffer.\r
+  @param[in, out] SizeOfBuffer  The size, in bytes, of Buffer.\r
   @param[in]      Buffer        A pointer to the buffer to set.\r
 \r
   @retval VOID* Return the pointer for the buffer been set.\r
index ea65581ebc87d311604550ed88d3332bf62a0879..1695ca561d0fd76d887e12d3e76771d9c73a3d70 100644 (file)
@@ -29,12 +29,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 /**\r
   The constructor function retrieve the PCD_PPI pointer.\r
 \r
-  @param[in] VOID\r
-  \r
   @retval PCD_PPI * The pointer to the PCD_PPI.\r
 \r
 **/\r
-STATIC\r
 PCD_PPI  *\r
 GetPcdPpiPtr (\r
   VOID\r
@@ -49,8 +46,6 @@ GetPcdPpiPtr (
   return PcdPpi;\r
 }\r
 \r
-\r
-\r
 /**\r
   Sets the current SKU in the PCD database to the value specified by SkuId.  SkuId is returned.\r
 \r
@@ -79,7 +74,7 @@ LibPcdSetSku (
 /**\r
   Returns the 8-bit value for the token specified by TokenNumber. \r
 \r
-  @param[in]  The PCD token number to retrieve a current value for.\r
+  @param[in]  TokenNumber The PCD token number to retrieve a current value for.\r
 \r
   @retval UINT8 Returns the 8-bit value for the token specified by TokenNumber. \r
 \r
@@ -102,7 +97,7 @@ LibPcdGet8 (
 /**\r
   Returns the 16-bit value for the token specified by TokenNumber. \r
 \r
-  @param[in]  The PCD token number to retrieve a current value for.\r
+  @param[in] TokenNumber The PCD token number to retrieve a current value for.\r
 \r
   @retval UINT16 Returns the 16-bit value for the token specified by TokenNumber. \r
 \r
@@ -579,9 +574,9 @@ LibPcdSet64 (
   \r
   If SizeOfValue > 0 and Buffer is NULL, then ASSERT().\r
   \r
-  @param[in]  TokenNumber The PCD token number to set a current value for.\r
-  @param[in,out] SizeOfBuffer The size, in bytes, of Buffer.\r
-  @param[in]  Value A pointer to the buffer to set.\r
+  @param[in]        TokenNumber     The PCD token number to set a current value for.\r
+  @param[in, out]   SizeOfBuffer    The size, in bytes, of Buffer.\r
+  @param[in]        Buffer          A pointer to the buffer to set.\r
 \r
   @retval VOID* Return the pointer for the buffer been set.\r
 \r
@@ -956,10 +951,10 @@ LibPcdCancelCallback (
   token number in the token space, then 0 is returned.  If TokenNumber is not 0 and \r
   is not in the token space specified by Guid, then ASSERT().\r
 \r
-  @param[in]  Pointer to a 128-bit unique value that designates which namespace \r
-              to set a value from.  If NULL, then the default token space is used.\r
-  @param[in]  The previous PCD token number.  If 0, then retrieves the first PCD \r
-              token number.\r
+  @param[in]  Guid          Pointer to a 128-bit unique value that designates which namespace \r
+                            to set a value from.  If NULL, then the default token space is used.\r
+  @param[in]  TokenNumber   The previous PCD token number.  If 0, then retrieves the first PCD \r
+                            token number.\r
 \r
   @retval UINTN            The next valid token number.\r
 \r
@@ -996,8 +991,8 @@ LibPcdGetNextToken (
 \r
 \r
   \r
-  @param[in]  Pointer to a 128-bit unique value that designates from which namespace \r
-              to start the search.\r
+  @param[in]  Guid  Pointer to a 128-bit unique value that designates from which namespace \r
+                    to start the search.\r
 \r
   @retval CONST GUID *  The next valid token namespace.\r
 \r