Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix hysteresis support in gov_step_wise.c #5736

Merged
merged 2 commits into from
Nov 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions drivers/thermal/gov_step_wise.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,8 @@ static void thermal_zone_trip_update(struct thermal_zone_device *tz, int trip_id
trace_thermal_zone_trip(tz, trip_id, trip.type);
}

hyst_temp = trip_temp = trip.temperature;
if (tz->ops->get_trip_hyst) {
tz->ops->get_trip_hyst(tz, trip_id, &hyst_temp);
hyst_temp = trip_temp - hyst_temp;
}
trip_temp = trip.temperature;
hyst_temp = trip_temp - trip.hysteresis;
trip_type = trip.type;

dev_dbg(&tz->device,
Expand Down
Loading