Update to 20150410.

This commit is contained in:
Jung-uk Kim 2015-04-10 16:43:29 +00:00
parent 1990ef034b
commit 0e20abec20
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=383742
3 changed files with 3 additions and 72 deletions

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= acpica
PORTVERSION= 20150408
PORTREVISION= 1
PORTVERSION= 20150410
CATEGORIES= sysutils devel
MASTER_SITES= https://acpica.org/sites/acpica/files/ \
LOCAL

View File

@ -1,2 +1,2 @@
SHA256 (acpica-unix2-20150408.tar.gz) = ee0f099fbcb83f3b636640b5d3e6f65ece9c568f279dd09c0aa54f60b6a5ad09
SIZE (acpica-unix2-20150408.tar.gz) = 1337153
SHA256 (acpica-unix2-20150410.tar.gz) = 9cd298a370335d6b0271a320a220e88e787aecfaa039a3b67ea627ee27972e60
SIZE (acpica-unix2-20150410.tar.gz) = 1337136

View File

@ -1,68 +0,0 @@
--- ../../source/components/disassembler/dmcstyle.c.orig 2015-04-08 13:17:53.000000000 -0400
+++ ../../source/components/disassembler/dmcstyle.c 2015-04-10 00:55:46.808791000 -0400
@@ -114,20 +114,12 @@
Child1 = AcpiPsGetArg (Op, 0);
if (!Child1)
{
- /* Parse tree may be confused or corrupted */
-
return (FALSE);
}
/* Get the second operand */
Child2 = Child1->Common.Next;
- if (!Child2)
- {
- /* Parse tree may be confused or corrupted */
-
- return (FALSE);
- }
/* Setup the operator string for this opcode */
@@ -307,16 +299,8 @@
/* Target is 3rd operand */
Target = Child2->Common.Next;
-
if (Op->Common.AmlOpcode == AML_DIVIDE_OP)
{
- if (!Target)
- {
- /* Parse tree may be confused or corrupted */
-
- return (FALSE);
- }
-
/*
* Divide has an extra target operand (Remainder).
* If this extra target is specified, it cannot be converted
@@ -419,13 +403,6 @@
/* Target is optional, 3rd operand */
Target = Child2->Common.Next;
- if (!Target)
- {
- /* Parse tree may be confused or corrupted */
-
- return (FALSE);
- }
-
if (AcpiDmIsValidTarget (Target))
{
AcpiDmPromoteTarget (Op, Target);
@@ -446,13 +423,6 @@
* source so that the target is processed first.
*/
Target = Child1->Common.Next;
- if (!Target)
- {
- /* Parse tree may be confused or corrupted */
-
- return (FALSE);
- }
-
AcpiDmPromoteTarget (Op, Target);
if (!Target->Common.OperatorSymbol)