summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Library/PlatformVarCleanupLib/PlatVarCleanupLib.c
diff options
context:
space:
mode:
authorStar Zeng <star.zeng@intel.com>2016-03-17 13:31:44 +0800
committerStar Zeng <star.zeng@intel.com>2016-03-18 15:14:34 +0800
commit58f025afd52a294d2482cd01eb4752d222918461 (patch)
treee4ccd1606e5ca6b200df4cf209bc914ed380fe3e /MdeModulePkg/Library/PlatformVarCleanupLib/PlatVarCleanupLib.c
parent5811eea0fdb56187597e50b1282e7cfab4965a65 (diff)
downloadedk2-58f025afd52a294d2482cd01eb4752d222918461.tar.gz
edk2-58f025afd52a294d2482cd01eb4752d222918461.tar.bz2
edk2-58f025afd52a294d2482cd01eb4752d222918461.zip
MdeModulePkg PlatformVarCleanupLib: Locate VarCheck protocol when using
Do not locate VarCheck protocol in Constructor, then the gEdkiiVarCheckProtocolGuid could be removed from [Depex]. It will be more flexible for the library Consumer to work without VarCheck protocol installed, for example at recovery boot mode with EmuRuntimeDxe. The unused UefiLib is also been removed from [LibraryClasses] in *.inf. Cc: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Feng Tian <feng.tian@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
Diffstat (limited to 'MdeModulePkg/Library/PlatformVarCleanupLib/PlatVarCleanupLib.c')
-rw-r--r--MdeModulePkg/Library/PlatformVarCleanupLib/PlatVarCleanupLib.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/MdeModulePkg/Library/PlatformVarCleanupLib/PlatVarCleanupLib.c b/MdeModulePkg/Library/PlatformVarCleanupLib/PlatVarCleanupLib.c
index d99174c4b9..74655c6dad 100644
--- a/MdeModulePkg/Library/PlatformVarCleanupLib/PlatVarCleanupLib.c
+++ b/MdeModulePkg/Library/PlatformVarCleanupLib/PlatVarCleanupLib.c
@@ -1,7 +1,7 @@
/** @file
Sample platform variable cleanup library implementation.
-Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -100,6 +100,15 @@ IsUserVariable (
EFI_STATUS Status;
VAR_CHECK_VARIABLE_PROPERTY Property;
+ if (mVarCheck == NULL) {
+ gBS->LocateProtocol (
+ &gEdkiiVarCheckProtocolGuid,
+ NULL,
+ (VOID **) &mVarCheck
+ );
+ }
+ ASSERT (mVarCheck != NULL);
+
ZeroMem (&Property, sizeof (Property));
Status = mVarCheck->VariablePropertyGet (
Name,
@@ -1225,13 +1234,6 @@ PlatformVarCleanupLibConstructor (
mLastVarErrorFlag = InternalGetVarErrorFlag ();
DEBUG ((EFI_D_INFO, "mLastVarErrorFlag - 0x%02x\n", mLastVarErrorFlag));
- Status = gBS->LocateProtocol (
- &gEdkiiVarCheckProtocolGuid,
- NULL,
- (VOID **) &mVarCheck
- );
- ASSERT_EFI_ERROR (Status);
-
//
// Register EFI_END_OF_DXE_EVENT_GROUP_GUID event.
//