summaryrefslogtreecommitdiff
path: root/source/components/hardware/hwxface.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2013-04-19 05:49:53 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2013-04-19 05:49:53 +0000
commita95efc1a1522251892a7baebcb0569741ad7c6ca (patch)
tree123ed5e9ad0bad1d892c0637e33953142b50843f /source/components/hardware/hwxface.c
parent9b7735bafd2eb5079bc7f216ba350dbf8f268683 (diff)
Notes
Diffstat (limited to 'source/components/hardware/hwxface.c')
-rw-r--r--source/components/hardware/hwxface.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/components/hardware/hwxface.c b/source/components/hardware/hwxface.c
index 9d02640f0583..6f26c793939a 100644
--- a/source/components/hardware/hwxface.c
+++ b/source/components/hardware/hwxface.c
@@ -556,7 +556,8 @@ AcpiGetSleepTypeData (
* Evaluate the \_Sx namespace object containing the register values
* for this state
*/
- Info->Pathname = ACPI_CAST_PTR (char, AcpiGbl_SleepStateNames[SleepState]);
+ Info->RelativePathname = ACPI_CAST_PTR (
+ char, AcpiGbl_SleepStateNames[SleepState]);
Status = AcpiNsEvaluate (Info);
if (ACPI_FAILURE (Status))
{
@@ -568,7 +569,7 @@ AcpiGetSleepTypeData (
if (!Info->ReturnObject)
{
ACPI_ERROR ((AE_INFO, "No Sleep State object returned from [%s]",
- Info->Pathname));
+ Info->RelativePathname));
Status = AE_AML_NO_RETURN_VALUE;
goto Cleanup;
}
@@ -630,7 +631,7 @@ Cleanup:
if (ACPI_FAILURE (Status))
{
ACPI_EXCEPTION ((AE_INFO, Status,
- "While evaluating Sleep State [%s]", Info->Pathname));
+ "While evaluating Sleep State [%s]", Info->RelativePathname));
}
ACPI_FREE (Info);