]> git.pld-linux.org Git - packages/acpica.git/blob - big-endian-v2.patch
- updated tests
[packages/acpica.git] / big-endian-v2.patch
1 Updated versions of upstream often contain fixes that were not seen
2 in the original big-endian patch; we try to capture those here.
3
4 Signed-off-by: Al Stone <ahs3@redhat.com>
5
6 Index: acpica-unix-20191213/source/compiler/asllookup.c
7 ===================================================================
8 --- acpica-unix-20191213.orig/source/compiler/asllookup.c
9 +++ acpica-unix-20191213/source/compiler/asllookup.c
10 @@ -249,7 +249,8 @@ LkIsObjectUsed (
11       * ACPI names and are typically not referenced since they are meant
12       * to be called by the host OS.
13       */
14 -    if (Node->Name.Ascii[0] == '_')
15 +    ACPI_MOVE_32_TO_32(&tmp.Ascii, Node->Name.Ascii);
16 +    if (tmp.Ascii[0] == '_')
17      {
18          return (AE_OK);
19      }
This page took 0.08334 seconds and 3 git commands to generate.