diff options
author | Zhang Rui <rui.zhang@intel.com> | 2012-06-27 10:14:05 +0400 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2012-09-24 10:44:37 +0400 |
commit | 908b9fb792b77663a007af240e7ee89460de2025 (patch) | |
tree | af3ac03a4823028a51b0f067a9da291368ff65be /include/linux/thermal.h | |
parent | ce119f83257aae29b84a5bfad0669e8348437b18 (diff) | |
download | linux-908b9fb792b77663a007af240e7ee89460de2025.tar.xz |
Thermal: Unify the code for both active and passive cooling
Remove thermal_zone_device_passive(). And use
thermal_zone_trip_update() and thermal_zone_do_update()
for both active and passive cooling.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Reviewed-by: Rafael J. Wysocki <rjw@sisk.pl>
Reviewed-by: Eduardo Valentin <eduardo.valentin@ti.com>
Diffstat (limited to 'include/linux/thermal.h')
-rw-r--r-- | include/linux/thermal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/thermal.h b/include/linux/thermal.h index de0515a96f9f..76d0fe88eb1c 100644 --- a/include/linux/thermal.h +++ b/include/linux/thermal.h @@ -121,7 +121,7 @@ struct thermal_zone_device { int polling_delay; int temperature; int last_temperature; - bool passive; + int passive; unsigned int forced_passive; const struct thermal_zone_device_ops *ops; struct list_head thermal_instances; |