Blame SOURCES/mips-be-fix.patch

0fb27e
Index: acpica-unix2-20180313/source/compiler/aslparseop.c
0fb27e
===================================================================
0fb27e
--- acpica-unix2-20180313.orig/source/compiler/aslparseop.c
0fb27e
+++ acpica-unix2-20180313/source/compiler/aslparseop.c
0fb27e
@@ -283,7 +283,16 @@ TrCreateValuedLeafOp (
0fb27e
 
0fb27e
 
0fb27e
     Op = TrAllocateOp (ParseOpcode);
0fb27e
-    Op->Asl.Value.Integer = Value;
0fb27e
+    if (ParseOpcode == PARSEOP_NAMESTRING ||
0fb27e
+        ParseOpcode == PARSEOP_NAMESEG ||
0fb27e
+        ParseOpcode == PARSEOP_STRING_LITERAL)
0fb27e
+    {
0fb27e
+        Op->Asl.Value.String = (char *) Value;
0fb27e
+    }
0fb27e
+    else
0fb27e
+    {
0fb27e
+        Op->Asl.Value.Integer = Value;
0fb27e
+    }
0fb27e
 
0fb27e
     DbgPrint (ASL_PARSE_OUTPUT,
0fb27e
         "\nCreateValuedLeafOp  Ln/Col %u/%u NewOp %p  "
0fb27e
Index: acpica-unix2-20180313/source/include/platform/aclinux.h
0fb27e
===================================================================
0fb27e
--- acpica-unix2-20180313.orig/source/include/platform/aclinux.h
0fb27e
+++ acpica-unix2-20180313/source/include/platform/aclinux.h
0fb27e
@@ -227,10 +227,8 @@
0fb27e
 #endif
0fb27e
 
0fb27e
 #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
0fb27e
-#if defined(__PPC64__) || defined(__s390x__)
0fb27e
 #define ACPI_BIG_ENDIAN
0fb27e
 #endif
0fb27e
-#endif
0fb27e
 
0fb27e
 #endif /* __KERNEL__ */
0fb27e