diff options
author | Bob Moore <robert.moore@intel.com> | 2012-03-21 02:42:45 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-03-22 06:45:53 +0100 |
commit | 4efeeecd884de36b77c64489dee7eb7ca4d6bed0 (patch) | |
tree | ec068d9914f1be1ec849cf1dd2e59bfaab4ae3d7 /drivers/acpi/acpica/nsdumpdv.c | |
parent | ACPICA: Update to version 20120215 (diff) | |
download | linux-4efeeecd884de36b77c64489dee7eb7ca4d6bed0.tar.xz linux-4efeeecd884de36b77c64489dee7eb7ca4d6bed0.zip |
ACPICA: Clarify METHOD_NAME* defines for full-pathname cases
Changed the METHOD_NAME* defines that define a full pathname to
the method to METHOD_PATHNAME* in order to make it clear that
it is not a simple 4-character ACPI name. Used for the various
sleep/wake methods.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/nsdumpdv.c')
-rw-r--r-- | drivers/acpi/acpica/nsdumpdv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/nsdumpdv.c b/drivers/acpi/acpica/nsdumpdv.c index 30ea5bc53a78..3b5acb0eb406 100644 --- a/drivers/acpi/acpica/nsdumpdv.c +++ b/drivers/acpi/acpica/nsdumpdv.c @@ -121,7 +121,7 @@ void acpi_ns_dump_root_devices(void) return; } - status = acpi_get_handle(NULL, ACPI_NS_SYSTEM_BUS, &sys_bus_handle); + status = acpi_get_handle(NULL, METHOD_NAME__SB_, &sys_bus_handle); if (ACPI_FAILURE(status)) { return; } |