]> git.pld-linux.org Git - packages/acpica.git/blob - acpica-ull-32bit.patch
- updated to 20220331 + current Fedora patch set; acpinames is gone
[packages/acpica.git] / acpica-ull-32bit.patch
1 Index: acpica-unix2-20220331/source/common/dmtbdump.c
2 ===================================================================
3 --- acpica-unix2-20220331.orig/source/common/dmtbdump.c
4 +++ acpica-unix2-20220331/source/common/dmtbdump.c
5 @@ -392,7 +392,11 @@ AcpiDmDumpXsdt (
6      for (i = 0; i < Entries; i++)
7      {
8          AcpiDmLineHeader2 (Offset, sizeof (UINT64), "ACPI Table Address", i);
9 +#if ACPI_MACHINE_WIDTH == 32
10 +        AcpiOsPrintf ("%16.16llX\n", AcpiUtReadUint64 (&Array[i]));
11 +#else
12          AcpiOsPrintf ("%16.16lX\n", AcpiUtReadUint64 (&Array[i]));
13 +#endif
14          Offset += sizeof (UINT64);
15      }
16  }
This page took 0.031945 seconds and 4 git commands to generate.