diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2015-12-15 01:19:53 +0000 |
---|---|---|
committer | Eduardo Valentin <edubezval@gmail.com> | 2016-01-06 18:06:39 -0800 |
commit | ad74e46cb3ba9e706f91f3f71baf816d2d8e45db (patch) | |
tree | 70b98c2bb70fd9f7766d0cfbb17ad1606e01b965 /drivers/thermal/thermal_core.c | |
parent | 5440c40b900fa561add48a7e70e9c892f0551387 (diff) | |
download | linux-ad74e46cb3ba9e706f91f3f71baf816d2d8e45db.tar.bz2 |
thermal: trip_point_temp_store() calls thermal_zone_device_update()
trip_point_temp_store() updates trip temperature. It should call
thermal_zone_device_update() immediately.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Diffstat (limited to 'drivers/thermal/thermal_core.c')
-rw-r--r-- | drivers/thermal/thermal_core.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c index d9e525cc9c1c..768fb10eb962 100644 --- a/drivers/thermal/thermal_core.c +++ b/drivers/thermal/thermal_core.c @@ -676,8 +676,12 @@ trip_point_temp_store(struct device *dev, struct device_attribute *attr, return -EINVAL; ret = tz->ops->set_trip_temp(tz, trip, temperature); + if (ret) + return ret; - return ret ? ret : count; + thermal_zone_device_update(tz); + + return count; } static ssize_t |