aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/power.c
diff options
context:
space:
mode:
authorPatrick Mochel <mochel@linux.intel.com>2006-05-19 16:54:51 -0400
committerLen Brown <len.brown@intel.com>2006-06-30 02:51:37 -0400
commit14747204055d4b8fb2f8517beca91985ac617c17 (patch)
treeed5f613034d2a6af1fbf51e4349b3df8a5c3f0c5 /drivers/acpi/power.c
parentACPI: pci_root: Remove unneeded acpi_handle from driver. (diff)
downloadlinux-dev-14747204055d4b8fb2f8517beca91985ac617c17.tar.xz
linux-dev-14747204055d4b8fb2f8517beca91985ac617c17.zip
ACPI: power: Remove unneeded acpi_handle from driver.
Signed-off-by: Patrick Mochel <mochel@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/power.c')
-rw-r--r--drivers/acpi/power.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/acpi/power.c b/drivers/acpi/power.c
index 214428948cc1..5d3447f4582c 100644
--- a/drivers/acpi/power.c
+++ b/drivers/acpi/power.c
@@ -70,7 +70,6 @@ static struct acpi_driver acpi_power_driver = {
};
struct acpi_power_resource {
- acpi_handle handle;
struct acpi_device * device;
acpi_bus_id name;
u32 system_level;
@@ -541,7 +540,6 @@ static int acpi_power_add(struct acpi_device *device)
return -ENOMEM;
memset(resource, 0, sizeof(struct acpi_power_resource));
- resource->handle = device->handle;
resource->device = device;
strcpy(resource->name, device->pnp.bus_id);
strcpy(acpi_device_name(device), ACPI_POWER_DEVICE_NAME);