Lines Matching full:temp

43 	INFO("threshold temp=%d, direction=%d\n",  in show_threshold()
51 INFO("trip id=%d, type=%d, temp=%d, hyst=%d\n", in show_trip()
52 tt->id, tt->type, tt->temp, tt->hyst); in show_trip()
61 INFO("temperature: %d\n", tz->temp); in show_temp()
148 static int trip_high(int tz_id, int trip_id, int temp, void *arg) in trip_high() argument
154 tz_id, tz->name, trip_id, temp); in trip_high()
159 static int trip_low(int tz_id, int trip_id, int temp, void *arg) in trip_low() argument
165 tz_id, tz->name, trip_id, temp); in trip_low()
170 static int trip_add(int tz_id, int trip_id, int type, int temp, int hyst, __maybe_unused void *arg) in trip_add() argument
172 INFO("Trip point added %d: id=%d, type=%d, temp=%d, hyst=%d\n", in trip_add()
173 tz_id, trip_id, type, temp, hyst); in trip_add()
185 static int trip_change(int tz_id, int trip_id, int type, int temp, in trip_change() argument
191 INFO("Trip point changed %d: id=%d, type=%d, temp=%d, hyst=%d\n", in trip_change()
192 tz_id, trip_id, type, temp, hyst); in trip_change()
195 tz->trip[trip_id].temp = temp; in trip_change()
234 static int threshold_add(int tz_id, int temp, int direction, __maybe_unused void *arg) in threshold_add() argument
236 INFO("Threshold added tz_id=%d: temp=%d, direction=%d\n", tz_id, temp, direction); in threshold_add()
241 static int threshold_delete(int tz_id, int temp, int direction, __maybe_unused void *arg) in threshold_delete() argument
243 INFO("Threshold deleted tz_id=%d: temp=%d, direction=%d\n", tz_id, temp, direction); in threshold_delete()
255 static int threshold_up(int tz_id, int temp, int prev_temp, __maybe_unused void *arg) in threshold_up() argument
257 INFO("Threshold crossed way up tz_id=%d: temp=%d, prev_temp=%d\n", in threshold_up()
258 tz_id, temp, prev_temp); in threshold_up()
263 static int threshold_down(int tz_id, int temp, int prev_temp, __maybe_unused void *arg) in threshold_down() argument
265 INFO("Threshold crossed way down tz_id=%d: temp=%d, prev_temp=%d\n", in threshold_down()
266 tz_id, temp, prev_temp); in threshold_down()