DynamicTablesPkg: AmlLib\AmlDbgPrint fix ECC error
Fix ECC error 8001 reported errors in AmlDbgPrint. [8001] Only capital letters are allowed to be used for #define declarations. Signed-off-by: Sami Mujawar <sami.mujawar@arm.com> Reviewed-by: Alexei Fedorov <Alexei.Fedorov@arm.com>
This commit is contained in:
committed by
mergify[bot]
parent
5e0b708f74
commit
e18bc21d6a
@ -82,7 +82,7 @@ AmlParseFieldElement (
|
||||
}
|
||||
|
||||
// Skip the field opcode (1 byte) as it is already in the FieldByteEncoding.
|
||||
DumpRaw (CurrPos, 1);
|
||||
AMLDBG_DUMP_RAW (CurrPos, 1);
|
||||
Status = AmlStreamProgress (FStream, 1);
|
||||
if (EFI_ERROR (Status)) {
|
||||
ASSERT (0);
|
||||
@ -106,7 +106,7 @@ AmlParseFieldElement (
|
||||
}
|
||||
|
||||
// Move stream forward as the PkgLen has been read.
|
||||
DumpRaw (CurrPos, PkgLenOffset);
|
||||
AMLDBG_DUMP_RAW (CurrPos, PkgLenOffset);
|
||||
Status = AmlStreamProgress (FStream, PkgLenOffset);
|
||||
if (EFI_ERROR (Status)) {
|
||||
ASSERT (0);
|
||||
|
Reference in New Issue
Block a user