summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/PeiExtractGuidedSectionLib
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-31 03:39:53 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-31 03:39:53 +0000
commit4754c98b06ac8394a3c371c28e00e61cdc3b13ae (patch)
tree11a74dbba7df7ee4ac7a9dd9456c1d36b876f0b0 /MdePkg/Library/PeiExtractGuidedSectionLib
parent95f484c9204a4b037fd647813db8f65a30bc7df2 (diff)
downloadedk2-4754c98b06ac8394a3c371c28e00e61cdc3b13ae.tar.gz
edk2-4754c98b06ac8394a3c371c28e00e61cdc3b13ae.tar.bz2
edk2-4754c98b06ac8394a3c371c28e00e61cdc3b13ae.zip
Update to use DOS format
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6318 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/PeiExtractGuidedSectionLib')
-rw-r--r--MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.c b/MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.c
index 72add417b6..43a1a3c22e 100644
--- a/MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.c
+++ b/MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.c
@@ -30,14 +30,14 @@ typedef struct {
EXTRACT_GUIDED_SECTION_GET_INFO_HANDLER *ExtractGetInfoHandlerTable;
} PEI_EXTRACT_GUIDED_SECTION_HANDLER_INFO;
-/**
+/**
Build guid hob for the global memory to store the registered guid and Handler list.
If GuidHob exists, HandlerInfo will be directly got from Guid hob data.
- @param[in, out] InfoPointer Pointer to pei handler info structure.
+ @param[in, out] InfoPointer Pointer to pei handler info structure.
@retval RETURN_SUCCESS Build Guid hob for the global memory space to store guid and funciton tables.
- @retval RETURN_OUT_OF_RESOURCES No enough memory to allocated.
+ @retval RETURN_OUT_OF_RESOURCES No enough memory to allocated.
**/
RETURN_STATUS
EFIAPI
@@ -119,13 +119,13 @@ PeiGetExtractGuidedSectionHandlerInfo (
return EFI_SUCCESS;
}
-/**
+/**
Get the supported exract guided section Handler guid list.
If ExtractHandlerGuidTable = NULL, then ASSERT.
- @param[out] ExtractHandlerGuidTable The extract Handler guid pointer list.
+ @param[out] ExtractHandlerGuidTable The extract Handler guid pointer list.
- @return the number of the supported extract guided Handler.
+ @return the number of the supported extract guided Handler.
**/
UINTN
EFIAPI
@@ -153,14 +153,14 @@ ExtractGuidedSectionGetGuidList (
return HandlerInfo->NumberOfExtractHandler;
}
-/**
+/**
Register Guided Section Extract and GetInfo handler.
- @param[in] SectionGuid The guid matches this Extraction function.
+ @param[in] SectionGuid The guid matches this Extraction function.
@param[in] GetInfoHandler Function to get info from guided section.
- @param[in] DecodeHandler Function to extract guided section.
-
- @retval RETURN_SUCCESS Register Guided Section Extract function successfully.
+ @param[in] DecodeHandler Function to extract guided section.
+
+ @retval RETURN_SUCCESS Register Guided Section Extract function successfully.
@retval RETURN_OUT_OF_RESOURCES Resource is not enough to register new function.
@retval RETURN_INVALID_PARAMETER Input pointer to Guid value is not valid.
**/
@@ -222,7 +222,7 @@ ExtractGuidedSectionRegisterHandlers (
return RETURN_SUCCESS;
}
-/**
+/**
Get information from the guided section. This function first gets the guid value
from guided section header, then match this guid in the registered extract Handler list
to its corresponding getinfo Handler.
@@ -230,14 +230,14 @@ ExtractGuidedSectionRegisterHandlers (
If found, it will call the getinfo Handler to get the required size and attribute.
It will ASSERT () if the pointer to OutputBufferSize is NULL.
- It will ASSERT () if the pointer to ScratchBufferSize is NULL.
+ It will ASSERT () if the pointer to ScratchBufferSize is NULL.
It will ASSERT () if the pointer to SectionAttribute is NULL.
@param[in] InputSection Buffer containing the input GUIDed section to be processed.
@param[out] OutputBufferSize The size of OutputBuffer.
@param[out] ScratchBufferSize The size of ScratchBuffer.
@param[out] SectionAttribute The attribute of the input guided section.
-
+
@retval RETURN_SUCCESS Get the required information successfully.
@retval RETURN_UNSUPPORTED Guided section data is not supported.
@retval RETURN_INVALID_PARAMETER The input data is not the valid guided section.
@@ -298,12 +298,12 @@ ExtractGuidedSectionGetInfo (
return RETURN_UNSUPPORTED;
}
-/**
+/**
Extract data from the guided section. This function first gets the guid value
from guided section header, then match this guid in the registered extract Handler list
to its corresponding extract Handler.
If not found, RETURN_INVALID_PARAMETER will be return.
- If found, it will call this extract Handler to get output data and AuthenticationStatus.
+ If found, it will call this extract Handler to get output data and AuthenticationStatus.
It will ASSERT () if the pointer to OutputBuffer is NULL.
It will ASSERT () if the pointer to AuthenticationStatus is NULL.
@@ -316,12 +316,12 @@ ExtractGuidedSectionGetInfo (
@param[out] ScratchBuffer A pointer to a caller-allocated buffer for function internal use.
@param[out] AuthenticationStatus
A pointer to a caller-allocated UINT32 that indicates the
- authentication status of the output buffer.
-
+ authentication status of the output buffer.
+
@retval RETURN_SUCCESS Get the output data, size and AuthenticationStatus successfully.
@retval RETURN_UNSUPPORTED Guided section data is not supported to be decoded.
- @retval RETURN_INVALID_PARAMETER The input data is not the valid guided section.
-
+ @retval RETURN_INVALID_PARAMETER The input data is not the valid guided section.
+
**/
RETURN_STATUS
EFIAPI