Lines Matching full:trip

44 					 int trip, int *temp)  in int340x_thermal_get_trip_temp()  argument
50 return d->override_ops->get_trip_temp(zone, trip, temp); in int340x_thermal_get_trip_temp()
52 if (trip < d->aux_trip_nr) in int340x_thermal_get_trip_temp()
53 *temp = d->aux_trips[trip]; in int340x_thermal_get_trip_temp()
54 else if (trip == d->crt_trip_id) in int340x_thermal_get_trip_temp()
56 else if (trip == d->psv_trip_id) in int340x_thermal_get_trip_temp()
58 else if (trip == d->hot_trip_id) in int340x_thermal_get_trip_temp()
63 d->act_trips[i].id == trip) { in int340x_thermal_get_trip_temp()
76 int trip, in int340x_thermal_get_trip_type() argument
83 return d->override_ops->get_trip_type(zone, trip, type); in int340x_thermal_get_trip_type()
85 if (trip < d->aux_trip_nr) in int340x_thermal_get_trip_type()
87 else if (trip == d->crt_trip_id) in int340x_thermal_get_trip_type()
89 else if (trip == d->hot_trip_id) in int340x_thermal_get_trip_type()
91 else if (trip == d->psv_trip_id) in int340x_thermal_get_trip_type()
96 d->act_trips[i].id == trip) { in int340x_thermal_get_trip_type()
109 int trip, int temp) in int340x_thermal_set_trip_temp() argument
116 return d->override_ops->set_trip_temp(zone, trip, temp); in int340x_thermal_set_trip_temp()
118 snprintf(name, sizeof(name), "PAT%d", trip); in int340x_thermal_set_trip_temp()
124 d->aux_trips[trip] = temp; in int340x_thermal_set_trip_temp()
131 int trip, int *temp) in int340x_thermal_get_trip_hyst() argument
138 return d->override_ops->get_trip_hyst(zone, trip, temp); in int340x_thermal_get_trip_hyst()