Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 32006
b: refs/heads/master
c: 5fbc19e
h: refs/heads/master
v: v3
  • Loading branch information
Patrick Mochel authored and Len Brown committed Jun 30, 2006
1 parent af43536 commit 8ddcda5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2d1e0a02f16f84c2358843d91d6ca0131a0587ce
refs/heads/master: 5fbc19efdbedf9c9125774f66f80d6a6ccce4566
8 changes: 4 additions & 4 deletions trunk/drivers/acpi/power.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 8ddcda5

Please sign in to comment.