Lines Matching refs:trip_temp
18 int trip_temp, trip_hyst;
21 tz->ops->get_trip_temp(tz, trip, &trip_temp);
31 trip, trip_temp, tz->temperature,
52 * enable fan when temperature exceeds trip_temp and disable
53 * the fan in case it falls below trip_temp minus hysteresis
55 if (instance->target == 0 && tz->temperature >= trip_temp)
58 tz->temperature <= trip_temp - trip_hyst)
84 * trip_temp: +---->+
88 * (trip_temp - hyst): +<----+
93 * * If the fan is not running and temperature exceeds trip_temp, the fan
96 * (trip_temp - hyst) so that the fan gets turned off again.