Commit e81a0e77 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

Merge branch 'acpi-thermal'

* acpi-thermal:
  ACPI / thermal: Use acpi_bus_attach_private_data() to attach private data
parents d9bd4493 f70977fb
...@@ -925,13 +925,10 @@ static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz) ...@@ -925,13 +925,10 @@ static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz)
if (result) if (result)
return result; return result;
status = acpi_attach_data(tz->device->handle, status = acpi_bus_attach_private_data(tz->device->handle,
acpi_bus_private_data_handler, tz->thermal_zone);
tz->thermal_zone); if (ACPI_FAILURE(status))
if (ACPI_FAILURE(status)) {
pr_err(PREFIX "Error attaching device data\n");
return -ENODEV; return -ENODEV;
}
tz->tz_enabled = 1; tz->tz_enabled = 1;
...@@ -946,7 +943,7 @@ static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz) ...@@ -946,7 +943,7 @@ static void acpi_thermal_unregister_thermal_zone(struct acpi_thermal *tz)
sysfs_remove_link(&tz->thermal_zone->device.kobj, "device"); sysfs_remove_link(&tz->thermal_zone->device.kobj, "device");
thermal_zone_device_unregister(tz->thermal_zone); thermal_zone_device_unregister(tz->thermal_zone);
tz->thermal_zone = NULL; tz->thermal_zone = NULL;
acpi_detach_data(tz->device->handle, acpi_bus_private_data_handler); acpi_bus_detach_private_data(tz->device->handle);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment