Fix some coding style issues in MdeModulePkg.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9774 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -1363,8 +1363,7 @@ EmuQueryVariableInfo (
|
||||
|
||||
This function allocates memory space for variable store area and initializes its attributes.
|
||||
|
||||
@param VariableBase Base of the variable store area created
|
||||
@param LastVariableOffset Size of VARIABLE_STORE_HEADER
|
||||
@param VolatileStore Indicates if the variable store is volatile.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
|
@@ -465,7 +465,7 @@ FindVariable (
|
||||
//
|
||||
// Record Variable in VariableIndex HOB
|
||||
//
|
||||
if (IndexTable->Length < VARIABLE_INDEX_TABLE_VOLUME && StopRecord != TRUE) {
|
||||
if (IndexTable->Length < VARIABLE_INDEX_TABLE_VOLUME && !StopRecord) {
|
||||
Offset = (UINT32)((UINTN)Variable - (UINTN)LastVariable);
|
||||
//
|
||||
// The distance of two neighbouring VAR_ADDED variable is larger than 2^16,
|
||||
@@ -476,7 +476,7 @@ FindVariable (
|
||||
StopRecord = TRUE;
|
||||
}
|
||||
|
||||
if (StopRecord != TRUE) {
|
||||
if (!StopRecord) {
|
||||
IndexTable->Index[IndexTable->Length++] = (UINT16) Offset;
|
||||
}
|
||||
LastVariable = Variable;
|
||||
|
@@ -2215,7 +2215,7 @@ ReclaimForOS(
|
||||
/**
|
||||
Initializes variable store area for non-volatile and volatile variable.
|
||||
|
||||
@param SystemTable The pointer of EFI_SYSTEM_TABLE.
|
||||
@param FvbProtocol Pointer to an instance of EFI Firmware Volume Block Protocol.
|
||||
|
||||
@retval EFI_SUCCESS Function successfully executed.
|
||||
@retval EFI_OUT_OF_RESOURCES Fail to allocate enough memory resource.
|
||||
@@ -2240,6 +2240,7 @@ VariableCommonInitialize (
|
||||
UINT64 VariableStoreLength;
|
||||
EFI_EVENT ReadyToBootEvent;
|
||||
UINTN ScratchSize;
|
||||
UINTN VariableSize;
|
||||
|
||||
Status = EFI_SUCCESS;
|
||||
//
|
||||
@@ -2353,7 +2354,6 @@ VariableCommonInitialize (
|
||||
Status = EFI_SUCCESS;
|
||||
|
||||
while (IsValidVariableHeader (NextVariable)) {
|
||||
UINTN VariableSize = 0;
|
||||
VariableSize = NextVariable->NameSize + NextVariable->DataSize + sizeof (VARIABLE_HEADER);
|
||||
if ((NextVariable->Attributes & (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) == (EFI_VARIABLE_NON_VOLATILE | EFI_VARIABLE_HARDWARE_ERROR_RECORD)) {
|
||||
mVariableModuleGlobal->HwErrVariableTotalSize += HEADER_ALIGN (VariableSize);
|
||||
@@ -2449,6 +2449,14 @@ VariableClassAddressChangeEvent (
|
||||
EfiConvertPointer (0x0, (VOID **) &mVariableModuleGlobal);
|
||||
}
|
||||
|
||||
/**
|
||||
Firmware Volume Block Protocol notification event handler.
|
||||
|
||||
Discover NV Variable Store and install Variable Arch Protocol.
|
||||
|
||||
@param[in] Event Event whose notification function is being invoked.
|
||||
@param[in] Context Pointer to the notification function's context.
|
||||
**/
|
||||
VOID
|
||||
EFIAPI
|
||||
FvbNotificationEvent (
|
||||
|
Reference in New Issue
Block a user