aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/fan.c
diff options
context:
space:
mode:
authorPatrick Mochel <mochel@linux.intel.com>2006-05-19 16:54:50 -0400
committerLen Brown <len.brown@intel.com>2006-06-30 02:50:48 -0400
commit579c896cc91434e4feb938f780eba580c93fa0da (patch)
tree0516c82125408409923e18b7b35327fa06aeb2f1 /drivers/acpi/fan.c
parentACPI: button: Remove unneeded acpi_handle from driver. (diff)
downloadlinux-dev-579c896cc91434e4feb938f780eba580c93fa0da.tar.xz
linux-dev-579c896cc91434e4feb938f780eba580c93fa0da.zip
ACPI: fan: 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/fan.c')
-rw-r--r--drivers/acpi/fan.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/acpi/fan.c b/drivers/acpi/fan.c
index a56acdb37296..daed2460924d 100644
--- a/drivers/acpi/fan.c
+++ b/drivers/acpi/fan.c
@@ -64,7 +64,6 @@ static struct acpi_driver acpi_fan_driver = {
};
struct acpi_fan {
- acpi_handle handle;
struct acpi_device * device;
};
@@ -192,7 +191,6 @@ static int acpi_fan_add(struct acpi_device *device)
return -ENOMEM;
memset(fan, 0, sizeof(struct acpi_fan));
- fan->handle = device->handle;
fan->device = device;
strcpy(acpi_device_name(device), "Fan");
strcpy(acpi_device_class(device), ACPI_FAN_CLASS);