diff options
author | Samer El-Haj-Mahmoud <samer.el-haj-mahmoud@hp.com> | 2015-07-01 15:21:03 +0000 |
---|---|---|
committer | lgao4 <lgao4@Edk2> | 2015-07-01 15:21:03 +0000 |
commit | 7b6dad328fe459c6e0c8eb3b14a35bef5de6e16f (patch) | |
tree | e99886de5ca33178724df911f83475ca90d8275e | |
parent | 05de9ab296553c3ae54857f3ba63429010f3b245 (diff) | |
download | edk2-platforms-7b6dad328fe459c6e0c8eb3b14a35bef5de6e16f.tar.xz |
BaseTools: Add missing EfiPersistentMemory to EFI_MEMORY_TYPE
To sync with the EFI_MEMROYT_TYPE definition in MdePkg
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Samer El-Haj-Mahmoud <samer.el-haj-mahmoud@hp.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17792 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | BaseTools/Source/C/Include/Common/UefiMultiPhase.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/BaseTools/Source/C/Include/Common/UefiMultiPhase.h b/BaseTools/Source/C/Include/Common/UefiMultiPhase.h index 5fb3d5e9d4..f77959036e 100644 --- a/BaseTools/Source/C/Include/Common/UefiMultiPhase.h +++ b/BaseTools/Source/C/Include/Common/UefiMultiPhase.h @@ -2,6 +2,7 @@ This includes some definitions introduced in UEFI that will be used in both PEI
and DXE phases.
+ (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials are licensed and made available
@@ -35,6 +36,7 @@ typedef enum { EfiMemoryMappedIO,
EfiMemoryMappedIOPortSpace,
EfiPalCode,
+ EfiPersistentMemory,
EfiMaxMemoryType
} EFI_MEMORY_TYPE;
|