diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2021-11-16 19:21:15 -0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-12-07 17:24:28 +0000 |
commit | c5b3a56e4f7e4361997544557511d6b835568193 (patch) | |
tree | 2c468c6d76b9916828aa1cf7796294e0c6460684 /ArmVirtPkg/XenAcpiPlatformDxe | |
parent | 1d2482e1e362729543d8966754a216dee00924c7 (diff) | |
download | edk2-c5b3a56e4f7e4361997544557511d6b835568193.tar.gz |
ArmVirtPkg: 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: Sami Mujawar <sami.mujawar@arm.com>
Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'ArmVirtPkg/XenAcpiPlatformDxe')
-rw-r--r-- | ArmVirtPkg/XenAcpiPlatformDxe/XenAcpiPlatformDxe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ArmVirtPkg/XenAcpiPlatformDxe/XenAcpiPlatformDxe.c b/ArmVirtPkg/XenAcpiPlatformDxe/XenAcpiPlatformDxe.c index df25f3a4c6..438b0ff0f0 100644 --- a/ArmVirtPkg/XenAcpiPlatformDxe/XenAcpiPlatformDxe.c +++ b/ArmVirtPkg/XenAcpiPlatformDxe/XenAcpiPlatformDxe.c @@ -57,7 +57,7 @@ GetXenArmAcpiRsdp ( (CONST VOID **)&Reg, &AddressCells, &SizeCells,
&RegSize);
if (EFI_ERROR (Status)) {
- DEBUG ((EFI_D_WARN, "%a: No 'xen,guest-acpi' compatible DT node found\n",
+ DEBUG ((DEBUG_WARN, "%a: No 'xen,guest-acpi' compatible DT node found\n",
__FUNCTION__));
return EFI_NOT_FOUND;
}
@@ -127,7 +127,7 @@ InstallXenArmTables ( //
Status = GetXenArmAcpiRsdp (&XenAcpiRsdpStructurePtr);
if (EFI_ERROR (Status)) {
- DEBUG ((EFI_D_INFO, "%a: No RSDP table found\n", __FUNCTION__));
+ DEBUG ((DEBUG_INFO, "%a: No RSDP table found\n", __FUNCTION__));
return Status;
}
|