]> git.pld-linux.org Git - packages/acpica.git/blame - big-endian-v2.patch
- updated to 20200430
[packages/acpica.git] / big-endian-v2.patch
CommitLineData
25d7dd99
JB
1Updated versions of upstream often contain fixes that were not seen
2in the original big-endian patch; we try to capture those here.
3
4Signed-off-by: Al Stone <ahs3@redhat.com>
5
70586bb3 6Index: acpica-unix-20191213/source/compiler/asllookup.c
25d7dd99 7===================================================================
70586bb3
JB
8--- acpica-unix-20191213.orig/source/compiler/asllookup.c
9+++ acpica-unix-20191213/source/compiler/asllookup.c
25d7dd99
JB
10@@ -249,7 +249,8 @@ LkIsObjectUsed (
11 * ACPI names and are typically not referenced since they are meant
12 * to be called by the host OS.
13 */
14- if (Node->Name.Ascii[0] == '_')
15+ ACPI_MOVE_32_TO_32(&tmp.Ascii, Node->Name.Ascii);
16+ if (tmp.Ascii[0] == '_')
17 {
18 return (AE_OK);
19 }
This page took 0.035266 seconds and 4 git commands to generate.