summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Mochel2006-05-19 22:54:43 +0200
committerLen Brown2006-06-30 08:42:43 +0200
commit5fbc19efdbedf9c9125774f66f80d6a6ccce4566 (patch)
tree8abaab4672ddfe42dad03d94e47057201aa59968
parentACPI: pci_root: Use acpi_device's handle instead of driver's (diff)
downloadkernel-qcow2-linux-5fbc19efdbedf9c9125774f66f80d6a6ccce4566.tar.gz
kernel-qcow2-linux-5fbc19efdbedf9c9125774f66f80d6a6ccce4566.tar.xz
kernel-qcow2-linux-5fbc19efdbedf9c9125774f66f80d6a6ccce4566.zip
ACPI: power: Use acpi_device's handle instead of driver's
Signed-off-by: Patrick Mochel <mochel@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r--drivers/acpi/power.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/acpi/power.c b/drivers/acpi/power.c
index 2b61719d680b..214428948cc1 100644
--- a/drivers/acpi/power.c
+++ b/drivers/acpi/power.c
@@ -125,7 +125,7 @@ static int acpi_power_get_state(struct acpi_power_resource *resource)
if (!resource)
return -EINVAL;
- status = acpi_evaluate_integer(resource->handle, "_STA", NULL, &sta);
+ status = acpi_evaluate_integer(resource->device->handle, "_STA", NULL, &sta);
if (ACPI_FAILURE(status))
return -ENODEV;
@@ -193,7 +193,7 @@ static int acpi_power_on(acpi_handle handle)
return 0;
}
- status = acpi_evaluate_object(resource->handle, "_ON", NULL, NULL);
+ status = acpi_evaluate_object(resource->device->handle, "_ON", NULL, NULL);
if (ACPI_FAILURE(status))
return -ENODEV;
@@ -241,7 +241,7 @@ static int acpi_power_off_device(acpi_handle handle)
return 0;
}
- status = acpi_evaluate_object(resource->handle, "_OFF", NULL, NULL);
+ status = acpi_evaluate_object(resource->device->handle, "_OFF", NULL, NULL);
if (ACPI_FAILURE(status))
return -ENODEV;
@@ -549,7 +549,7 @@ static int acpi_power_add(struct acpi_device *device)
acpi_driver_data(device) = resource;
/* Evalute the object to get the system level and resource order. */
- status = acpi_evaluate_object(resource->handle, NULL, NULL, &buffer);
+ status = acpi_evaluate_object(device->handle, NULL, NULL, &buffer);
if (ACPI_FAILURE(status)) {
result = -ENODEV;
goto end;