aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/dev/acpica/compiler/aslload.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2017-09-29 23:02:49 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2017-09-29 23:02:49 +0000
commitc39c15e23f7155ec7ad56f993e9e454f513fa561 (patch)
treedc85d94fea926a660b87e0ed430fcd96489db2e8 /sys/contrib/dev/acpica/compiler/aslload.c
parente8b437ef9acd737bfd18dc34562cce4e195e71b8 (diff)
parent2c673001fb88105f2d160032c4d4b76cb518e37f (diff)
downloadsrc-c39c15e23f7155ec7ad56f993e9e454f513fa561.tar.gz
src-c39c15e23f7155ec7ad56f993e9e454f513fa561.zip
Merge ACPICA 20170929.
Notes
Notes: svn path=/head/; revision=324109
Diffstat (limited to 'sys/contrib/dev/acpica/compiler/aslload.c')
-rw-r--r--sys/contrib/dev/acpica/compiler/aslload.c30
1 files changed, 18 insertions, 12 deletions
diff --git a/sys/contrib/dev/acpica/compiler/aslload.c b/sys/contrib/dev/acpica/compiler/aslload.c
index 7480f232afb1..19864533267a 100644
--- a/sys/contrib/dev/acpica/compiler/aslload.c
+++ b/sys/contrib/dev/acpica/compiler/aslload.c
@@ -327,8 +327,9 @@ LdLoadFieldElements (
* The name already exists in this scope
* But continue processing the elements
*/
- AslError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Child,
- Child->Asl.Value.String);
+ AslDualParseOpError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Child,
+ Child->Asl.Value.String, ASL_MSG_FOUND_HERE, Node->Op,
+ Node->Op->Asl.ExternalName);
}
}
else
@@ -388,8 +389,10 @@ LdLoadResourceElements (
{
/* Actual node causing the error was saved in ParentMethod */
- AslError (ASL_ERROR, ASL_MSG_NAME_EXISTS,
- (ACPI_PARSE_OBJECT *) Op->Asl.ParentMethod, Op->Asl.Namepath);
+ AslDualParseOpError (ASL_ERROR, ASL_MSG_NAME_EXISTS,
+ (ACPI_PARSE_OBJECT *) Op->Asl.ParentMethod,
+ Op->Asl.Namepath, ASL_MSG_FOUND_HERE, Node->Op,
+ Node->Op->Asl.ExternalName);
return (AE_OK);
}
return (Status);
@@ -805,8 +808,8 @@ LdNamespace1Begin (
/*
* Allow one create on an object or segment that was
* previously declared External only if WalkState->OwnerId and
- * Node->OwnerId are found in different tables (meaning that
- * they have differnt OwnerIds).
+ * Node->OwnerId are different (meaning that the current WalkState
+ * and the Node are in different tables).
*/
Node->Flags &= ~ANOBJ_IS_EXTERNAL;
Node->Type = (UINT8) ObjectType;
@@ -827,8 +830,9 @@ LdNamespace1Begin (
if (Node->OwnerId == WalkState->OwnerId &&
!(Node->Flags & IMPLICIT_EXTERNAL))
{
- AslError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Op,
- Op->Asl.ExternalName);
+ AslDualParseOpError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Op,
+ Op->Asl.ExternalName, ASL_MSG_FOUND_HERE, Node->Op,
+ Node->Op->Asl.ExternalName);
}
if (Node->Flags & IMPLICIT_EXTERNAL)
{
@@ -849,8 +853,9 @@ LdNamespace1Begin (
if (Node->OwnerId == WalkState->OwnerId)
{
- AslError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Op,
- Op->Asl.ExternalName);
+ AslDualParseOpError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Op,
+ Op->Asl.ExternalName, ASL_MSG_FOUND_HERE, Node->Op,
+ Node->Op->Asl.ExternalName);
}
}
else if ((Node->Flags & ANOBJ_IS_EXTERNAL) &&
@@ -905,8 +910,9 @@ LdNamespace1Begin (
{
/* Valid error, object already exists */
- AslError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Op,
- Op->Asl.ExternalName);
+ AslDualParseOpError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Op,
+ Op->Asl.ExternalName, ASL_MSG_FOUND_HERE, Node->Op,
+ Node->Op->Asl.ExternalName);
return_ACPI_STATUS (AE_OK);
}
}