diff options
author | Bob Moore <robert.moore@intel.com> | 2014-01-08 00:44:51 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-01-08 09:31:39 -0500 |
commit | 06d186010ccfbaed6981991d221bd7769b891537 (patch) | |
tree | 0a1d5ec73d270a16d9b89f64bcc1c192f66ce43d | |
parent | a2c8633b406deb8e79cccbefc06786878d33c6e4 (diff) |
ACPICA: Interpreter: Add additional debug info for an error case.
Emit the name of the namespace node for the error case when
there is no subobject attached to the node.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/acpica/exresnte.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/exresnte.c b/drivers/acpi/acpica/exresnte.c index acd34f599313..7ca6925a87ca 100644 --- a/drivers/acpi/acpica/exresnte.c +++ b/drivers/acpi/acpica/exresnte.c | |||
@@ -124,7 +124,8 @@ acpi_ex_resolve_node_to_value(struct acpi_namespace_node **object_ptr, | |||
124 | } | 124 | } |
125 | 125 | ||
126 | if (!source_desc) { | 126 | if (!source_desc) { |
127 | ACPI_ERROR((AE_INFO, "No object attached to node %p", node)); | 127 | ACPI_ERROR((AE_INFO, "No object attached to node [%4.4s] %p", |
128 | node->name.ascii, node)); | ||
128 | return_ACPI_STATUS(AE_AML_NO_OPERAND); | 129 | return_ACPI_STATUS(AE_AML_NO_OPERAND); |
129 | } | 130 | } |
130 | 131 | ||