Lines Matching refs:trip_id
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)
139 tz_id, trip_id, type, temp, hyst);
144 static int trip_delete(int tz_id, int trip_id, __maybe_unused void *arg)
146 INFO("Trip point deleted %d: id=%d\n", tz_id, trip_id);
151 static int trip_change(int tz_id, int trip_id, int type, int temp,
158 tz_id, trip_id, type, temp, hyst);
160 tz->trip[trip_id].type = type;
161 tz->trip[trip_id].temp = temp;
162 tz->trip[trip_id].hyst = hyst;