瀏覽代碼

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>
Patrick Mochel 19 年之前
父節點
當前提交
579c896cc9
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      drivers/acpi/fan.c

+ 0 - 2
drivers/acpi/fan.c

@@ -64,7 +64,6 @@ static struct acpi_driver acpi_fan_driver = {
 };
 };
 
 
 struct acpi_fan {
 struct acpi_fan {
-	acpi_handle handle;
 	struct acpi_device * device;
 	struct acpi_device * device;
 };
 };
 
 
@@ -192,7 +191,6 @@ static int acpi_fan_add(struct acpi_device *device)
 		return -ENOMEM;
 		return -ENOMEM;
 	memset(fan, 0, sizeof(struct acpi_fan));
 	memset(fan, 0, sizeof(struct acpi_fan));
 
 
-	fan->handle = device->handle;
 	fan->device = device;
 	fan->device = device;
 	strcpy(acpi_device_name(device), "Fan");
 	strcpy(acpi_device_name(device), "Fan");
 	strcpy(acpi_device_class(device), ACPI_FAN_CLASS);
 	strcpy(acpi_device_class(device), ACPI_FAN_CLASS);