edb6c78416
This update also means a major update for all of the big-endian patching that has been done. The older mechanism was getting to unwieldy to keep maintained, and too sensitive to upstream changes. Hence, redid all of the old patches, and took the opportunity to make them more amenable to change over time. Ultimately, the goal is to have upstream accept these in some form. Signed-off-by: Al Stone <ahs3@redhat.com>
13 lines
611 B
Diff
13 lines
611 B
Diff
diff -Naur acpica-unix2-20200925.orig/source/common/dmtbdump.c acpica-unix2-20200925/source/common/dmtbdump.c
|
|
--- acpica-unix2-20200925.orig/source/common/dmtbdump.c 2020-10-16 18:33:41.108600489 -0600
|
|
+++ acpica-unix2-20200925/source/common/dmtbdump.c 2020-10-16 18:35:01.970316862 -0600
|
|
@@ -333,7 +333,7 @@
|
|
for (i = 0; i < Entries; i++)
|
|
{
|
|
AcpiDmLineHeader2 (Offset, sizeof (UINT64), "ACPI Table Address", i);
|
|
- AcpiOsPrintf ("%16.16lX\n", AcpiUtReadUint64(&Array[i]));
|
|
+ AcpiOsPrintf ("%16.16llX\n", AcpiUtReadUint64(&Array[i]));
|
|
Offset += sizeof (UINT64);
|
|
}
|
|
}
|