diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-06-05 02:36:13 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-06-05 02:36:13 +0000 |
commit | 502bfcef5c0535f473e15a3fed04419182509b5f (patch) | |
tree | 949d1661aa53dc96738cfd23920070b0f2a1596a /MdePkg/Include/Library | |
parent | 5fe71b5f039b97075841c260df58a86feb02d731 (diff) | |
download | edk2-platforms-502bfcef5c0535f473e15a3fed04419182509b5f.tar.xz |
The return description for LibPcdSetx function is ambiguity. The actual meaning of return value is input parameter, but not the value/pointer exist in PCD database.
So this patch use parameter name directly in description for return value.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8472 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library')
-rw-r--r-- | MdePkg/Include/Library/PcdLib.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/MdePkg/Include/Library/PcdLib.h b/MdePkg/Include/Library/PcdLib.h index 20c7765f41..6187935bf6 100644 --- a/MdePkg/Include/Library/PcdLib.h +++ b/MdePkg/Include/Library/PcdLib.h @@ -1072,7 +1072,7 @@ LibPcdGetExSize ( @param[in] TokenNumber The PCD token number to set a current value for.
@param[in] Value The 8-bit value to set.
- @return Return the value that was set.
+ @return Return the Value that was set.
**/
UINT8
@@ -1092,7 +1092,7 @@ LibPcdSet8 ( @param[in] TokenNumber The PCD token number to set a current value for.
@param[in] Value The 16-bit value to set.
- @return Return the value that was set.
+ @return Return the Value that was set.
**/
UINT16
@@ -1112,7 +1112,7 @@ LibPcdSet16 ( @param[in] TokenNumber The PCD token number to set a current value for.
@param[in] Value The 32-bit value to set.
- @return Return the value that was set.
+ @return Return the Value that was set.
**/
UINT32
@@ -1132,7 +1132,7 @@ LibPcdSet32 ( @param[in] TokenNumber The PCD token number to set a current value for.
@param[in] Value The 64-bit value to set.
- @return Return the value that was set.
+ @return Return the Value that was set.
**/
UINT64
@@ -1162,7 +1162,7 @@ LibPcdSet64 ( @param[in, out] SizeOfBuffer The size, in bytes, of Buffer.
@param[in] Buffer A pointer to the buffer to set.
- @return Return the pointer for the buffer that was set.
+ @return Return the pointer for the Buffer that was set.
**/
VOID *
@@ -1183,7 +1183,7 @@ LibPcdSetPtr ( @param[in] TokenNumber The PCD token number to set a current value for.
@param[in] Value The boolean value to set.
- @return Return the value that was set.
+ @return Return the Value that was set.
**/
BOOLEAN
@@ -1207,7 +1207,7 @@ LibPcdSetBool ( @param[in] TokenNumber The PCD token number to set a current value for.
@param[in] Value The 8-bit value to set.
- @return Return the value that was set.
+ @return Return the Value that was set.
**/
UINT8
@@ -1232,7 +1232,7 @@ LibPcdSetEx8 ( @param[in] TokenNumber The PCD token number to set a current value for.
@param[in] Value The 16-bit value to set.
- @return Return the value that was set.
+ @return Return the Value that was set.
**/
UINT16
@@ -1257,7 +1257,7 @@ LibPcdSetEx16 ( @param[in] TokenNumber The PCD token number to set a current value for.
@param[in] Value The 32-bit value to set.
- @return Return the value that was set.
+ @return Return the Value that was set.
**/
UINT32
@@ -1281,7 +1281,7 @@ LibPcdSetEx32 ( @param[in] TokenNumber The PCD token number to set a current value for.
@param[in] Value The 64-bit value to set.
- @return Return the value that was set.
+ @return Return the Value that was set.
**/
UINT64
@@ -1312,7 +1312,7 @@ LibPcdSetEx64 ( @param[in, out] SizeOfBuffer The size, in bytes, of Buffer.
@param[in] Buffer A pointer to the buffer to set.
- @return Return the pointer to the buffer that was set.
+ @return Return the pointer to the Buffer that was set.
**/
VOID *
@@ -1338,7 +1338,7 @@ LibPcdSetExPtr ( @param[in] TokenNumber The PCD token number to set a current value for.
@param[in] Value The Boolean value to set.
- @return Return the value that was set.
+ @return Return the Value that was set.
**/
BOOLEAN
@@ -1491,7 +1491,7 @@ LibPcdGetNextTokenSpace ( @param[in, out] SizeOfBuffer A pointer to the size, in bytes, of Buffer.
@param[in] Buffer A pointer to the buffer to used to set the target variable.
- @return Return the pointer to the buffer that was set.
+ @return Return the pointer to the Buffer that was set.
**/
VOID *
|