Lines Matching defs:temp
43 INFO("trip id=%d, type=%d, temp=%d, hyst=%d\n",
44 tt->id, tt->type, tt->temp, tt->hyst);
53 INFO("temperature: %d\n", tz->temp);
114 static int trip_high(int tz_id, int trip_id, int temp, void *arg)
120 tz_id, tz->name, trip_id, temp);
125 static int trip_low(int tz_id, int trip_id, int temp, void *arg)
131 tz_id, tz->name, trip_id, temp);
136 static int trip_add(int tz_id, int trip_id, int type, int temp, int hyst, __maybe_unused void *arg)
138 INFO("Trip point added %d: id=%d, type=%d, temp=%d, hyst=%d\n",
139 tz_id, trip_id, type, temp, hyst);
151 static int trip_change(int tz_id, int trip_id, int type, int temp,
157 INFO("Trip point changed %d: id=%d, type=%d, temp=%d, hyst=%d\n",
158 tz_id, trip_id, type, temp, hyst);
161 tz->trip[trip_id].temp = temp;