diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2021-11-16 19:21:42 -0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-12-07 17:24:28 +0000 |
commit | 96e1cba5c1cb0f9272bbde6e851cae60521a0ef1 (patch) | |
tree | 29bff9915b9333a283f579058506b823ce9b8a57 /UefiCpuPkg/CpuMpPei/CpuBist.c | |
parent | 586fda4800124351c347d55f7bc186ac6aa15667 (diff) | |
download | edk2-96e1cba5c1cb0f9272bbde6e851cae60521a0ef1.tar.gz |
UefiCpuPkg: 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 'UefiCpuPkg/CpuMpPei/CpuBist.c')
-rw-r--r-- | UefiCpuPkg/CpuMpPei/CpuBist.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/UefiCpuPkg/CpuMpPei/CpuBist.c b/UefiCpuPkg/CpuMpPei/CpuBist.c index 159fa5cd1f..bb35bb4347 100644 --- a/UefiCpuPkg/CpuMpPei/CpuBist.c +++ b/UefiCpuPkg/CpuMpPei/CpuBist.c @@ -227,7 +227,7 @@ CollectBistDataFromPpi ( BspCpuInstance.InfoRecord.IA32HealthFlags.Uint32 = SecPlatformInformation->IA32HealthFlags.Uint32;
CpuInstance = &BspCpuInstance;
} else {
- DEBUG ((EFI_D_INFO, "Does not find any stored CPU BIST information from PPI!\n"));
+ DEBUG ((DEBUG_INFO, "Does not find any stored CPU BIST information from PPI!\n"));
}
}
for (ProcessorNumber = 0; ProcessorNumber < NumberOfProcessors; ProcessorNumber ++) {
@@ -250,7 +250,7 @@ CollectBistDataFromPpi ( (EFI_COMPUTING_UNIT_HOST_PROCESSOR | EFI_CU_HP_EC_SELF_TEST)
);
}
- DEBUG ((EFI_D_INFO, " APICID - 0x%08x, BIST - 0x%08x\n",
+ DEBUG ((DEBUG_INFO, " APICID - 0x%08x, BIST - 0x%08x\n",
(UINT32) ProcessorInfo.ProcessorId,
BistData
));
@@ -288,4 +288,3 @@ CollectBistDataFromPpi ( ASSERT_EFI_ERROR(Status);
}
}
-
|