]> git.pld-linux.org Git - packages/acpica.git/blob - mips-be-fix.patch
- updated to 20181031
[packages/acpica.git] / mips-be-fix.patch
1 Index: acpica-unix-20180508/source/compiler/aslparseop.c
2 ===================================================================
3 --- acpica-unix-20180508.orig/source/compiler/aslparseop.c
4 +++ acpica-unix-20180508/source/compiler/aslparseop.c
5 @@ -283,7 +283,16 @@ TrCreateValuedLeafOp (
6  
7  
8      Op = TrAllocateOp (ParseOpcode);
9 -    Op->Asl.Value.Integer = Value;
10 +    if (ParseOpcode == PARSEOP_NAMESTRING ||
11 +        ParseOpcode == PARSEOP_NAMESEG ||
12 +        ParseOpcode == PARSEOP_STRING_LITERAL)
13 +    {
14 +        Op->Asl.Value.String = (char *) Value;
15 +    }
16 +    else
17 +    {
18 +        Op->Asl.Value.Integer = Value;
19 +    }
20  
21      DbgPrint (ASL_PARSE_OUTPUT,
22          "\nCreateValuedLeafOp  Ln/Col %u/%u NewOp %p  "
23 Index: acpica-unix-20180508/source/include/platform/aclinux.h
24 ===================================================================
25 --- acpica-unix-20180508.orig/source/include/platform/aclinux.h
26 +++ acpica-unix-20180508/source/include/platform/aclinux.h
27 @@ -227,10 +227,8 @@
28  #endif
29  
30  #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
31 -#if defined(__PPC64__) || defined(__s390x__)
32  #define ACPI_BIG_ENDIAN
33  #endif
34 -#endif
35  
36  #endif /* __KERNEL__ */
37  
This page took 0.05415 seconds and 3 git commands to generate.