X-Git-Url: https://git.pld-linux.org/gitweb.cgi?a=blobdiff_plain;f=big-endian-v2.patch;fp=big-endian-v2.patch;h=0000000000000000000000000000000000000000;hb=b643ab7edd44dd1987bf605db0c6e71c415c8e86;hp=90bb67ee175a7de14007ae29cfdd9b1d27fa2c53;hpb=70586bb3c03e8b97d5e4547c3da5ffddeb7252b1;p=packages%2Facpica.git diff --git a/big-endian-v2.patch b/big-endian-v2.patch deleted file mode 100644 index 90bb67e..0000000 --- a/big-endian-v2.patch +++ /dev/null @@ -1,19 +0,0 @@ -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 - -Index: acpica-unix-20191213/source/compiler/asllookup.c -=================================================================== ---- acpica-unix-20191213.orig/source/compiler/asllookup.c -+++ acpica-unix-20191213/source/compiler/asllookup.c -@@ -249,7 +249,8 @@ LkIsObjectUsed ( - * 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); - }