Re: [PATCH 1/4] thermal: Add support for hardware-tracked trip points

From: Caesar Wang
Date: Tue May 03 2016 - 05:26:11 EST




å 2016å04æ28æ 05:48, Eduardo Valentin åé:
This patch is based on an earlier version from Mikko Perttunen
<mikko.perttunen@xxxxxxxx>

Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx>
Signed-off-by: Caesar Wang <wxt@xxxxxxxxxxxxxx>
Cc: Zhang Rui <rui.zhang@xxxxxxxxx>
Cc: Eduardo Valentin <edubezval@xxxxxxxxx>
Cc: linux-pm@xxxxxxxxxxxxxxx
---

drivers/thermal/thermal_core.c | 48 ++++++++++++++++++++++++++++++++++++++++++
include/linux/thermal.h | 3 +++


static void update_temperature(struct thermal_zone_device *tz)
{
int temp, ret;
@@ -569,6 +610,8 @@ void thermal_zone_device_update(struct thermal_zone_device *tz)
update_temperature(tz);
+ thermal_zone_set_trips(tz);
+
for (count = 0; count < tz->trips; count++)
handle_thermal_trip(tz, count);
}
@@ -754,6 +797,9 @@ trip_point_hyst_store(struct device *dev, struct device_attribute *attr,
*/
ret = tz->ops->set_trip_hyst(tz, trip, temperature);
+ if (!ret)
+ thermal_zone_set_trips(tz);
+
You would probably want to do the same on trip_point_temp_store().


Sorry, that has been set in thermal_zone_device_update().

static ssize_t trip_point_temp_store()
{
..
thermal_zone_device_update(tz);
..
}

_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@xxxxxxxxxxxxxxxxxxx
http://lists.infradead.org/mailman/listinfo/linux-rockchip


--
Thanks,
Caesar