summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BasePcdLibNull
diff options
context:
space:
mode:
authorgikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-26 06:57:44 +0000
committergikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-26 06:57:44 +0000
commit9638ba6d3f663ba64cb06193f22bc5c70356da64 (patch)
treeae67cc0a06f2792b3f0c4adf5bbb1b1fb4b9f662 /MdePkg/Library/BasePcdLibNull
parent122e21915101b8f38d81edc6d4f1fd1dd353e28a (diff)
downloadedk2-9638ba6d3f663ba64cb06193f22bc5c70356da64.tar.gz
edk2-9638ba6d3f663ba64cb06193f22bc5c70356da64.tar.bz2
edk2-9638ba6d3f663ba64cb06193f22bc5c70356da64.zip
Synchronize function comment in h file
with c file instance of this functions in MdePkg. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6732 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BasePcdLibNull')
-rw-r--r--MdePkg/Library/BasePcdLibNull/PcdLib.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/MdePkg/Library/BasePcdLibNull/PcdLib.c b/MdePkg/Library/BasePcdLibNull/PcdLib.c
index 37a151d25c..1688034263 100644
--- a/MdePkg/Library/BasePcdLibNull/PcdLib.c
+++ b/MdePkg/Library/BasePcdLibNull/PcdLib.c
@@ -778,8 +778,6 @@ LibPcdGetNextToken (
then NULL is returned.
If Guid is not NULL and is not a valid token space in the current platform, then ASSERT().
-
-
@param[in] Guid Pointer to a 128-bit unique value that designates from which namespace
to start the search.
@@ -799,25 +797,27 @@ LibPcdGetNextTokenSpace (
}
-
/**
+ Sets a value of a patchable PCD entry that is type pointer.
+
Sets the PCD entry specified by PatchVariable to the value specified by Buffer
- and SizeOfValue. Buffer is returned. If SizeOfValue is greater than
- MaximumDatumSize, then set SizeOfValue to MaximumDatumSize and return
+ and SizeOfBuffer. Buffer is returned. If SizeOfBuffer is greater than
+ MaximumDatumSize, then set SizeOfBuffer to MaximumDatumSize and return
NULL to indicate that the set operation was not actually performed.
- If SizeOfValue is set to MAX_ADDRESS, then SizeOfValue must be set to
+ If SizeOfBuffer is set to MAX_ADDRESS, then SizeOfBuffer must be set to
MaximumDatumSize and NULL must be returned.
If PatchVariable is NULL, then ASSERT().
- If SizeOfValue is NULL, then ASSERT().
- If SizeOfValue > 0 and Buffer is NULL, then ASSERT().
+ If SizeOfBuffer is NULL, then ASSERT().
+ If SizeOfBuffer > 0 and Buffer is NULL, then ASSERT().
@param[in] PatchVariable A pointer to the global variable in a module that is
the target of the set operation.
@param[in] MaximumDatumSize The maximum size allowed for the PCD entry specified by PatchVariable.
@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 pinter to the buffer been set.
+
+ @return Return the pointer to the buffer been set.
**/
VOID *