0560f83
Updated versions of upstream often contain fixes that were not seen
0560f83
in the original big-endian patch; we try to capture those here.
0560f83
0560f83
Signed-off-by: Al Stone <ahs3@redhat.com>
0560f83
d7f8eec
Index: acpica-unix-20191018/source/compiler/asllookup.c
5fcb15b
===================================================================
d7f8eec
--- acpica-unix-20191018.orig/source/compiler/asllookup.c
d7f8eec
+++ acpica-unix-20191018/source/compiler/asllookup.c
5fcb15b
@@ -249,7 +249,8 @@ LkIsObjectUsed (
0560f83
      * ACPI names and are typically not referenced since they are meant
0560f83
      * to be called by the host OS.
0560f83
      */
0560f83
-    if (Node->Name.Ascii[0] == '_')
0560f83
+    ACPI_MOVE_32_TO_32(&tmp.Ascii, Node->Name.Ascii);
0560f83
+    if (tmp.Ascii[0] == '_')
0560f83
     {
0560f83
         return (AE_OK);
0560f83
     }