acpica-tools/asllookup-miscompare.patch
Al Stone 7d2a7f8daf Update to 20160318 upstream sources
Signed-off-by: Al Stone <ahs3@redhat.com>
2016-03-19 15:32:48 -06:00

33 lines
1.2 KiB
Diff

Make AslLookup endian independent
From: Al Stone <ahs3@redhat.com>
---
source/compiler/asllookup.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
Index: acpica-unix2-20160318/source/compiler/asllookup.c
===================================================================
--- acpica-unix2-20160318.orig/source/compiler/asllookup.c
+++ acpica-unix2-20160318/source/compiler/asllookup.c
@@ -119,6 +119,7 @@ LkIsObjectUsed (
{
ACPI_NAMESPACE_NODE *Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, ObjHandle);
ACPI_NAMESPACE_NODE *Next;
+ ACPI_NAME_UNION tmp;
ASL_METHOD_LOCAL *MethodLocals;
ASL_METHOD_LOCAL *MethodArgs;
UINT32 i;
@@ -227,8 +228,9 @@ LkIsObjectUsed (
* Issue a remark even if it is a reserved name (starts
* with an underscore).
*/
+ ACPI_MOVE_32_TO_32(&tmp.Ascii, Next->Name.Ascii);
sprintf (MsgBuffer, "Name is within method [%4.4s]",
- Next->Name.Ascii);
+ tmp.Ascii);
AslError (ASL_REMARK, ASL_MSG_NOT_REFERENCED,
LkGetNameOp (Node->Op), MsgBuffer);
return (AE_OK);