]> git.pld-linux.org Git - packages/acpica.git/blobdiff - 0029-Support-PDTT-in-a-big-endian-world.patch
- updated to 20220331 + current Fedora patch set; acpinames is gone
[packages/acpica.git] / 0029-Support-PDTT-in-a-big-endian-world.patch
diff --git a/0029-Support-PDTT-in-a-big-endian-world.patch b/0029-Support-PDTT-in-a-big-endian-world.patch
new file mode 100644 (file)
index 0000000..51e41d1
--- /dev/null
@@ -0,0 +1,43 @@
+From 253fe3545e7d4eaa9cb93c771c9619f410109a02 Mon Sep 17 00:00:00 2001
+From: Al Stone <ahs3@redhat.com>
+Date: Fri, 25 Sep 2020 17:03:05 -0600
+Subject: [PATCH 29/45] Support PDTT in a big-endian world
+
+Signed-off-by: Al Stone <ahs3@redhat.com>
+---
+ source/common/dmtbdump2.c | 8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+Index: acpica-unix2-20220331/source/common/dmtbdump2.c
+===================================================================
+--- acpica-unix2-20220331.orig/source/common/dmtbdump2.c
++++ acpica-unix2-20220331/source/common/dmtbdump2.c
+@@ -1954,13 +1954,13 @@ AcpiDmDumpPdtt (
+ {
+     ACPI_STATUS             Status;
+     ACPI_PDTT_CHANNEL       *Subtable;
+-    UINT32                  Length = Table->Length;
++    UINT32                  TableLength = AcpiUtReadUint32 (&Table->Length);
+     UINT32                  Offset = sizeof (ACPI_TABLE_PDTT);
+     /* Main table */
+-    Status = AcpiDmDumpTable (Length, 0, Table, 0, AcpiDmTableInfoPdtt);
++    Status = AcpiDmDumpTable (TableLength, 0, Table, 0, AcpiDmTableInfoPdtt);
+     if (ACPI_FAILURE (Status))
+     {
+         return;
+@@ -1969,10 +1969,10 @@ AcpiDmDumpPdtt (
+     /* Subtables. Currently there is only one type, but can be multiples */
+     Subtable = ACPI_ADD_PTR (ACPI_PDTT_CHANNEL, Table, Offset);
+-    while (Offset < Table->Length)
++    while (Offset < TableLength)
+     {
+         AcpiOsPrintf ("\n");
+-        Status = AcpiDmDumpTable (Length, Offset, Subtable,
++        Status = AcpiDmDumpTable (TableLength, Offset, Subtable,
+             sizeof (ACPI_PDTT_CHANNEL), AcpiDmTableInfoPdtt0);
+         if (ACPI_FAILURE (Status))
+         {
This page took 0.074314 seconds and 4 git commands to generate.