diff options
author | Patrick Mochel <mochel@linux.intel.com> | 2006-05-19 16:54:50 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-06-30 02:50:48 -0400 |
commit | 579c896cc91434e4feb938f780eba580c93fa0da (patch) | |
tree | 0516c82125408409923e18b7b35327fa06aeb2f1 /drivers/acpi/fan.c | |
parent | 6c689537726ec665246d2f60c48475be2efac2d0 (diff) |
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.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/acpi/fan.c b/drivers/acpi/fan.c index a56acdb3729..daed2460924 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); |