summaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/nsdump.c
diff options
context:
space:
mode:
authorLv Zheng2015-12-29 06:53:50 +0100
committerRafael J. Wysocki2016-01-01 03:26:45 +0100
commit0e166e4f67f544370328bf879694f7ed116c2563 (patch)
treebc9df434f64a2b7932122a273256679eb5b78532 /drivers/acpi/acpica/nsdump.c
parentACPICA: Namespace: Fix wrong error log (diff)
downloadkernel-qcow2-linux-0e166e4f67f544370328bf879694f7ed116c2563.tar.gz
kernel-qcow2-linux-0e166e4f67f544370328bf879694f7ed116c2563.tar.xz
kernel-qcow2-linux-0e166e4f67f544370328bf879694f7ed116c2563.zip
ACPICA: Debugger: reduce old external path format
ACPICA commit 75c0da9e796bdf9bdd46d75f028a3e1779903214 In the error logs and debugger outputs, use new external path format that does not contain a trailing underscore. This patch takes care of acpi_ns_get_external_pathname() invocations, chaning them into acpi_ns_get_normalized_pathname(TRUE) where possible. Along with some error log fixes, the following debugger commands are fixed: resources, handlers, paths. Lv Zheng. Link: https://github.com/acpica/acpica/commit/75c0da9e Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/nsdump.c')
-rw-r--r--drivers/acpi/acpica/nsdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/nsdump.c b/drivers/acpi/acpica/nsdump.c
index 37aa5c45ca4b..e0719560bc33 100644
--- a/drivers/acpi/acpica/nsdump.c
+++ b/drivers/acpi/acpica/nsdump.c
@@ -717,7 +717,7 @@ acpi_ns_dump_one_object_path(acpi_handle obj_handle,
return (AE_OK);
}
- pathname = acpi_ns_get_external_pathname(node);
+ pathname = acpi_ns_get_normalized_pathname(node, TRUE);
path_indent = 1;
if (level <= max_level) {