diff options
author | Durgadoss R <durgadoss.r@intel.com> | 2012-09-18 09:34:56 +0400 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2012-11-05 09:59:57 +0400 |
commit | 50125a9b27dd09e9afdc1b8712ba0b3859886c68 (patch) | |
tree | dfd4e7ea8eb792fb725a3528ec929125c2432ea3 /drivers/acpi/thermal.c | |
parent | ef87394791206019e4e4e04cb746865f2dc115ed (diff) | |
download | linux-50125a9b27dd09e9afdc1b8712ba0b3859886c68.tar.xz |
Thermal: Pass zone parameters as argument to tzd_register
This patch adds the thermal zone parameter as an argument to
the tzd_register() function call; and updates other drivers
using this function.
Signed-off-by: Durgadoss R <durgadoss.r@intel.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Diffstat (limited to 'drivers/acpi/thermal.c')
-rw-r--r-- | drivers/acpi/thermal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c index 804204d41999..1794468223c4 100644 --- a/drivers/acpi/thermal.c +++ b/drivers/acpi/thermal.c @@ -900,14 +900,14 @@ static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz) if (tz->trips.passive.flags.valid) tz->thermal_zone = thermal_zone_device_register("acpitz", trips, 0, tz, - &acpi_thermal_zone_ops, + &acpi_thermal_zone_ops, NULL, tz->trips.passive.tsp*100, tz->polling_frequency*100); else tz->thermal_zone = thermal_zone_device_register("acpitz", trips, 0, tz, - &acpi_thermal_zone_ops, 0, - tz->polling_frequency*100); + &acpi_thermal_zone_ops, NULL, + 0, tz->polling_frequency*100); if (IS_ERR(tz->thermal_zone)) return -ENODEV; |