summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include
diff options
context:
space:
mode:
authorMichael D Kinney <michael.d.kinney@intel.com>2021-11-16 19:21:31 -0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-12-07 17:24:28 +0000
commit5f289f3ae3e9fbe6ff5b82d0e25e87bfb7899766 (patch)
tree61fc1ff6c5de5d9728fe902331a81369d8a45627 /MdePkg/Include
parent87000d77082339be464d07855d9fc194c6b4e8a6 (diff)
downloadedk2-5f289f3ae3e9fbe6ff5b82d0e25e87bfb7899766.tar.gz
edk2-5f289f3ae3e9fbe6ff5b82d0e25e87bfb7899766.tar.bz2
edk2-5f289f3ae3e9fbe6ff5b82d0e25e87bfb7899766.zip
MdePkg: 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: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'MdePkg/Include')
-rw-r--r--MdePkg/Include/Library/DebugLib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Include/Library/DebugLib.h b/MdePkg/Include/Library/DebugLib.h
index 7fb75f956c..056ceb63ad 100644
--- a/MdePkg/Include/Library/DebugLib.h
+++ b/MdePkg/Include/Library/DebugLib.h
@@ -448,7 +448,7 @@ UnitTestDebugAssert (
do { \
if (DebugAssertEnabled ()) { \
if (EFI_ERROR (StatusParameter)) { \
- DEBUG ((EFI_D_ERROR, "\nASSERT_EFI_ERROR (Status = %r)\n", StatusParameter)); \
+ DEBUG ((DEBUG_ERROR, "\nASSERT_EFI_ERROR (Status = %r)\n", StatusParameter)); \
_ASSERT (!EFI_ERROR (StatusParameter)); \
} \
} \