Minor coding style adjustment for DxeIpl.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5197 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8 2008-05-13 09:09:41 +00:00
parent db405d1b89
commit 708919bef7
2 changed files with 8 additions and 8 deletions

View File

@ -67,7 +67,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@retval EFI_OUT_OF_RESOURCES The system has insufficient @retval EFI_OUT_OF_RESOURCES The system has insufficient
resources to process the request. resources to process the request.
@reteval EFI_INVALID_PARAMETER The GUID in InputSection does @retval EFI_INVALID_PARAMETER The GUID in InputSection does
not match this instance of the not match this instance of the
GUIDed Section Extraction PPI. GUIDed Section Extraction PPI.
@ -118,7 +118,7 @@ BOOLEAN gInMemory = FALSE;
// Module Globals used in the DXE to PEI handoff // Module Globals used in the DXE to PEI handoff
// These must be module globals, so the stack can be switched // These must be module globals, so the stack can be switched
// //
static EFI_DXE_IPL_PPI mDxeIplPpi = { STATIC EFI_DXE_IPL_PPI mDxeIplPpi = {
DxeLoadCore DxeLoadCore
}; };
@ -130,7 +130,7 @@ STATIC EFI_PEI_DECOMPRESS_PPI mDecompressPpi = {
Decompress Decompress
}; };
static EFI_PEI_PPI_DESCRIPTOR mPpiList[] = { STATIC EFI_PEI_PPI_DESCRIPTOR mPpiList[] = {
{ {
EFI_PEI_PPI_DESCRIPTOR_PPI, EFI_PEI_PPI_DESCRIPTOR_PPI,
&gEfiDxeIplPpiGuid, &gEfiDxeIplPpiGuid,
@ -143,7 +143,7 @@ static EFI_PEI_PPI_DESCRIPTOR mPpiList[] = {
} }
}; };
static EFI_PEI_PPI_DESCRIPTOR mPpiSignal = { STATIC EFI_PEI_PPI_DESCRIPTOR mPpiSignal = {
(EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST), (EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
&gEfiEndOfPeiSignalPpiGuid, &gEfiEndOfPeiSignalPpiGuid,
NULL NULL
@ -544,7 +544,7 @@ PeiLoadFile (
@retval EFI_OUT_OF_RESOURCES The system has insufficient @retval EFI_OUT_OF_RESOURCES The system has insufficient
resources to process the request. resources to process the request.
@reteval EFI_INVALID_PARAMETER The GUID in InputSection does @retval EFI_INVALID_PARAMETER The GUID in InputSection does
not match this instance of the not match this instance of the
GUIDed Section Extraction PPI. GUIDed Section Extraction PPI.
@ -594,7 +594,7 @@ CustomGuidedSectionExtract (
} }
} }
if ((SectionAttribute & EFI_GUIDED_SECTION_PROCESSING_REQUIRED) && OutputBufferSize > 0) { if (((SectionAttribute & EFI_GUIDED_SECTION_PROCESSING_REQUIRED) != 0) && OutputBufferSize > 0) {
// //
// Allocate output buffer // Allocate output buffer
// //

View File

@ -55,7 +55,7 @@ PeiImageRead (
// ASSERT (ALIGN_POINTER (Source32, sizeof (UINT32)) == Source32); // ASSERT (ALIGN_POINTER (Source32, sizeof (UINT32)) == Source32);
Length = *ReadSize; Length = *ReadSize;
while (Length--) { while (Length-- != 0) {
*(Destination32++) = *(Source32++); *(Destination32++) = *(Source32++);
} }