mirror of https://github.com/acidanthera/audk.git
Correct typo in word in DxeCore.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11307 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
b695e7ff4a
commit
d613c2a88b
|
@ -22,7 +22,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
EFI_TPL gEfiCurrentTpl = TPL_APPLICATION;
|
EFI_TPL gEfiCurrentTpl = TPL_APPLICATION;
|
||||||
|
|
||||||
///
|
///
|
||||||
/// gEventQueueLock - Protects the event queus
|
/// gEventQueueLock - Protects the event queues
|
||||||
///
|
///
|
||||||
EFI_LOCK gEventQueueLock = EFI_INITIALIZE_LOCK_VARIABLE (TPL_HIGH_LEVEL);
|
EFI_LOCK gEventQueueLock = EFI_INITIALIZE_LOCK_VARIABLE (TPL_HIGH_LEVEL);
|
||||||
|
|
||||||
|
|
|
@ -325,7 +325,7 @@ FvReadFile (
|
||||||
|
|
||||||
if (Buffer == NULL) {
|
if (Buffer == NULL) {
|
||||||
//
|
//
|
||||||
// If Buffer is NULL, we only want to get the information colected so far
|
// If Buffer is NULL, we only want to get the information collected so far
|
||||||
//
|
//
|
||||||
return EFI_SUCCESS;
|
return EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Implementations for Firmware Volume Block protocol.
|
Implementations for Firmware Volume Block protocol.
|
||||||
|
|
||||||
It consumes FV HOBs and creates read-lonly Firmare Volume Block protocol
|
It consumes FV HOBs and creates read-only Firmare Volume Block protocol
|
||||||
instances for each of them.
|
instances for each of them.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
||||||
|
|
|
@ -28,7 +28,7 @@ typedef struct {
|
||||||
UINTN InformationIndex;
|
UINTN InformationIndex;
|
||||||
BOOLEAN Special;
|
BOOLEAN Special;
|
||||||
BOOLEAN Runtime;
|
BOOLEAN Runtime;
|
||||||
} EFI_MEMORY_TYPE_STAISTICS;
|
} EFI_MEMORY_TYPE_STATISTICS;
|
||||||
|
|
||||||
//
|
//
|
||||||
// MemoryMap - The current memory map
|
// MemoryMap - The current memory map
|
||||||
|
@ -52,7 +52,7 @@ UINTN mFreeMapStack = 0;
|
||||||
LIST_ENTRY mFreeMemoryMapEntryList = INITIALIZE_LIST_HEAD_VARIABLE (mFreeMemoryMapEntryList);
|
LIST_ENTRY mFreeMemoryMapEntryList = INITIALIZE_LIST_HEAD_VARIABLE (mFreeMemoryMapEntryList);
|
||||||
BOOLEAN mMemoryTypeInformationInitialized = FALSE;
|
BOOLEAN mMemoryTypeInformationInitialized = FALSE;
|
||||||
|
|
||||||
EFI_MEMORY_TYPE_STAISTICS mMemoryTypeStatistics[EfiMaxMemoryType + 1] = {
|
EFI_MEMORY_TYPE_STATISTICS mMemoryTypeStatistics[EfiMaxMemoryType + 1] = {
|
||||||
{ 0, MAX_ADDRESS, 0, 0, EfiMaxMemoryType, TRUE, FALSE }, // EfiReservedMemoryType
|
{ 0, MAX_ADDRESS, 0, 0, EfiMaxMemoryType, TRUE, FALSE }, // EfiReservedMemoryType
|
||||||
{ 0, MAX_ADDRESS, 0, 0, EfiMaxMemoryType, FALSE, FALSE }, // EfiLoaderCode
|
{ 0, MAX_ADDRESS, 0, 0, EfiMaxMemoryType, FALSE, FALSE }, // EfiLoaderCode
|
||||||
{ 0, MAX_ADDRESS, 0, 0, EfiMaxMemoryType, FALSE, FALSE }, // EfiLoaderData
|
{ 0, MAX_ADDRESS, 0, 0, EfiMaxMemoryType, FALSE, FALSE }, // EfiLoaderData
|
||||||
|
|
Loading…
Reference in New Issue