Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ad74e46c authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Eduardo Valentin
Browse files

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: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarEduardo Valentin <edubezval@gmail.com>
parent 5440c40b
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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