Commit 1c63f8cd authored by Niklas Söderlund's avatar Niklas Söderlund Committed by Rafael J. Wysocki
Browse files

thermal/drivers/rcar_gen3_thermal: Do not call set_trips() when resuming



There is no need to explicitly call set_trips() when resuming from
suspend. The thermal framework calls thermal_zone_device_update() that
restores the trip points.

Suggested-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: default avatarNiklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Link: https://lore.kernel.org/r/20230208190333.3159879-2-niklas.soderlund+renesas@ragnatech.se


Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 883d1552
Loading
Loading
Loading
Loading
+0 −4
Original line number Original line Diff line number Diff line
@@ -560,12 +560,8 @@ static int __maybe_unused rcar_gen3_thermal_resume(struct device *dev)


	for (i = 0; i < priv->num_tscs; i++) {
	for (i = 0; i < priv->num_tscs; i++) {
		struct rcar_gen3_thermal_tsc *tsc = priv->tscs[i];
		struct rcar_gen3_thermal_tsc *tsc = priv->tscs[i];
		struct thermal_zone_device *zone = tsc->zone;


		priv->thermal_init(tsc);
		priv->thermal_init(tsc);
		if (zone->ops->set_trips)
			rcar_gen3_thermal_set_trips(zone, zone->prev_low_trip,
						    zone->prev_high_trip);
	}
	}


	return 0;
	return 0;