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