summaryrefslogtreecommitdiffstats
path: root/SecurityPkg/Tcg/TcgDxe
diff options
context:
space:
mode:
authorgdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524>2012-07-09 03:22:21 +0000
committergdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524>2012-07-09 03:22:21 +0000
commit627c396148c4d9942e9b65d819ae7d223cbc3dc0 (patch)
tree5f839391d6bb1c799e83231c4c062189a3be484f /SecurityPkg/Tcg/TcgDxe
parent96277f740286aee54bdaf2a9da90e7482ac9103f (diff)
downloadedk2-627c396148c4d9942e9b65d819ae7d223cbc3dc0.tar.gz
edk2-627c396148c4d9942e9b65d819ae7d223cbc3dc0.tar.bz2
edk2-627c396148c4d9942e9b65d819ae7d223cbc3dc0.zip
Defer TCG table publish after LASA/LAML in the table got updated.
signed-off by Tao Hengyan <hengyan.tao@intel.com> reviewed by Dong Guo <guo.dong@intel.com> reviewed by Hot Tian <hot.tian@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13513 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'SecurityPkg/Tcg/TcgDxe')
-rw-r--r--SecurityPkg/Tcg/TcgDxe/TcgDxe.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/SecurityPkg/Tcg/TcgDxe/TcgDxe.c b/SecurityPkg/Tcg/TcgDxe/TcgDxe.c
index 05a11360d4..5b8f45d83f 100644
--- a/SecurityPkg/Tcg/TcgDxe/TcgDxe.c
+++ b/SecurityPkg/Tcg/TcgDxe/TcgDxe.c
@@ -1,7 +1,7 @@
/** @file
This module implements TCG EFI Protocol.
-Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2005 - 2012, 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
@@ -1176,11 +1176,6 @@ DriverEntry (
EFI_NATIVE_INTERFACE,
&mTcgDxeData.TcgProtocol
);
- //
- // Install ACPI Table
- //
- EfiCreateProtocolNotifyEvent (&gEfiAcpiTableProtocolGuid, TPL_CALLBACK, InstallAcpiTable, NULL, &Registration);
-
if (!EFI_ERROR (Status) && !mTcgDxeData.BsCap.TPMDeactivatedFlag) {
//
// Setup the log area and copy event log from hob list to it
@@ -1208,5 +1203,10 @@ DriverEntry (
);
}
+ //
+ // Install ACPI Table
+ //
+ EfiCreateProtocolNotifyEvent (&gEfiAcpiTableProtocolGuid, TPL_CALLBACK, InstallAcpiTable, NULL, &Registration);
+
return Status;
}