fc3eef63e8
This includes new source tarballs, updated patches, and updated expected results for test cases. In addition, three new tables (PRMT, RGRT and SVKL) now have big-endian support. Signed-off-by: Al Stone <ahs3@redhat.com>
17 lines
616 B
Diff
17 lines
616 B
Diff
Index: acpica-unix2-20220331/source/common/dmtbdump.c
|
|
===================================================================
|
|
--- acpica-unix2-20220331.orig/source/common/dmtbdump.c
|
|
+++ acpica-unix2-20220331/source/common/dmtbdump.c
|
|
@@ -392,7 +392,11 @@ AcpiDmDumpXsdt (
|
|
for (i = 0; i < Entries; i++)
|
|
{
|
|
AcpiDmLineHeader2 (Offset, sizeof (UINT64), "ACPI Table Address", i);
|
|
+#if ACPI_MACHINE_WIDTH == 32
|
|
+ AcpiOsPrintf ("%16.16llX\n", AcpiUtReadUint64 (&Array[i]));
|
|
+#else
|
|
AcpiOsPrintf ("%16.16lX\n", AcpiUtReadUint64 (&Array[i]));
|
|
+#endif
|
|
Offset += sizeof (UINT64);
|
|
}
|
|
}
|