Blame SOURCES/big-endian-v2.patch

0fb27e
Updated versions of upstream often contain fixes that were not seen
0fb27e
in the original big-endian patch; we try to capture those here.
0fb27e
0fb27e
Signed-off-by: Al Stone <ahs3@redhat.com>
0fb27e
0fb27e
diff -Naur acpica-unix2-20170929.orig/source/compiler/asllookup.c acpica-unix2-20170929/source/compiler/asllookup.c
0fb27e
--- acpica-unix2-20170929.orig/source/compiler/asllookup.c	2017-10-09 12:26:25.893508481 -0600
0fb27e
+++ acpica-unix2-20170929/source/compiler/asllookup.c	2017-10-17 11:45:42.230763844 -0600
0fb27e
@@ -249,7 +249,8 @@
0fb27e
      * ACPI names and are typically not referenced since they are meant
0fb27e
      * to be called by the host OS.
0fb27e
      */
0fb27e
-    if (Node->Name.Ascii[0] == '_')
0fb27e
+    ACPI_MOVE_32_TO_32(&tmp.Ascii, Node->Name.Ascii);
0fb27e
+    if (tmp.Ascii[0] == '_')
0fb27e
     {
0fb27e
         return (AE_OK);
0fb27e
     }