summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Core/Dxe
diff options
context:
space:
mode:
authormdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2010-12-06 21:55:14 +0000
committermdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>2010-12-06 21:55:14 +0000
commitfa542a1e770ac651b7a2f9e6650210465c824f7c (patch)
treef575dc975b3c33197bcb96c184b9387f5a577e12 /MdeModulePkg/Core/Dxe
parentd040b8f12d16c738d06f4817fc3db0f06a5e0203 (diff)
downloadedk2-fa542a1e770ac651b7a2f9e6650210465c824f7c.zip
edk2-fa542a1e770ac651b7a2f9e6650210465c824f7c.tar.gz
edk2-fa542a1e770ac651b7a2f9e6650210465c824f7c.tar.bz2
1) Change location of DEBUG() macro that prints the name of the FFS file being evaluated by the DXE Dispatcher to eliminate a duplicate print.
2) Change location of DEBUG() macro that prints the name of the FFS file being evaluated by the SMM Dispatcher to eliminate a duplicate print. 3) Remove all references and processing of SOR from the PiSmmCore. Treat use of SOR in the dependency expression of an SMM Driver as an invalid depex opcode. 4) Remove all references for an SMM Driver being in the "Untrusted" state from the PiSmmCore. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11127 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core/Dxe')
-rw-r--r--MdeModulePkg/Core/Dxe/Dispatcher/Dependency.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Core/Dxe/Dispatcher/Dependency.c b/MdeModulePkg/Core/Dxe/Dispatcher/Dependency.c
index 0ec9690..1d8a57b 100644
--- a/MdeModulePkg/Core/Dxe/Dispatcher/Dependency.c
+++ b/MdeModulePkg/Core/Dxe/Dispatcher/Dependency.c
@@ -220,8 +220,6 @@ CoreIsSchedulable (
EFI_GUID DriverGuid;
VOID *Interface;
- DEBUG ((DEBUG_DISPATCH, "Evaluate DXE DEPEX for FFS(%g)\n", &DriverEntry->FileName));
-
Operator = FALSE;
Operator2 = FALSE;
@@ -233,6 +231,8 @@ CoreIsSchedulable (
return FALSE;
}
+ DEBUG ((DEBUG_DISPATCH, "Evaluate DXE DEPEX for FFS(%g)\n", &DriverEntry->FileName));
+
if (DriverEntry->Depex == NULL) {
//
// A NULL Depex means treat the driver like an UEFI 2.0 thing.