diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2021-11-16 19:21:21 -0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-12-07 17:24:28 +0000 |
commit | 9c7da8d8041db4c2406476a72c960ac4c0e327d5 (patch) | |
tree | f81b53f55d415ab04d5cc313d9f53a4b562664ee /EmulatorPkg/Sec | |
parent | a1878955b29ad924761e165253e4ff3cfc4f6c1f (diff) | |
download | edk2-9c7da8d8041db4c2406476a72c960ac4c0e327d5.tar.gz |
EmulatorPkg: Change use of EFI_D_* to DEBUG_*
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3739
Update all use of EFI_D_* defines in DEBUG() macros to DEBUG_* defines.
Cc: Andrew Fish <afish@apple.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Michael Kubacki <michael.kubacki@microsoft.com>
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Ray Ni <ray.ni@intel.com>
Diffstat (limited to 'EmulatorPkg/Sec')
-rw-r--r-- | EmulatorPkg/Sec/Sec.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/EmulatorPkg/Sec/Sec.c b/EmulatorPkg/Sec/Sec.c index 1c0f73d669..e1bee4f6b4 100644 --- a/EmulatorPkg/Sec/Sec.c +++ b/EmulatorPkg/Sec/Sec.c @@ -80,7 +80,7 @@ _ModuleEntryPoint ( EMU_MAGIC_PAGE()->PpiList = PpiList;
ProcessLibraryConstructorList ();
- DEBUG ((EFI_D_ERROR, "SEC Has Started\n"));
+ DEBUG ((DEBUG_ERROR, "SEC Has Started\n"));
//
// Add Our PPIs to the list
@@ -136,5 +136,3 @@ _ModuleEntryPoint ( ASSERT (FALSE);
return;
}
-
-
|