Lines Matching defs:tz_id

57 	int tz_id;
113 if (nla_put_u32(p->msg, THERMAL_GENL_ATTR_TZ_ID, p->tz_id) ||
122 if (nla_put_u32(p->msg, THERMAL_GENL_ATTR_TZ_ID, p->tz_id))
130 if (nla_put_u32(p->msg, THERMAL_GENL_ATTR_TZ_ID, p->tz_id) ||
140 if (nla_put_u32(p->msg, THERMAL_GENL_ATTR_TZ_ID, p->tz_id) ||
152 if (nla_put_u32(p->msg, THERMAL_GENL_ATTR_TZ_ID, p->tz_id) ||
193 if (nla_put_u32(p->msg, THERMAL_GENL_ATTR_TZ_ID, p->tz_id) ||
305 int thermal_notify_tz_create(int tz_id, const char *name)
307 struct param p = { .tz_id = tz_id, .name = name };
312 int thermal_notify_tz_delete(int tz_id)
314 struct param p = { .tz_id = tz_id };
319 int thermal_notify_tz_enable(int tz_id)
321 struct param p = { .tz_id = tz_id };
326 int thermal_notify_tz_disable(int tz_id)
328 struct param p = { .tz_id = tz_id };
333 int thermal_notify_tz_trip_down(int tz_id, int trip_id, int temp)
335 struct param p = { .tz_id = tz_id, .trip_id = trip_id, .temp = temp };
340 int thermal_notify_tz_trip_up(int tz_id, int trip_id, int temp)
342 struct param p = { .tz_id = tz_id, .trip_id = trip_id, .temp = temp };
347 int thermal_notify_tz_trip_add(int tz_id, int trip_id, int trip_type,
350 struct param p = { .tz_id = tz_id, .trip_id = trip_id,
357 int thermal_notify_tz_trip_delete(int tz_id, int trip_id)
359 struct param p = { .tz_id = tz_id, .trip_id = trip_id };
364 int thermal_notify_tz_trip_change(int tz_id, int trip_id, int trip_type,
367 struct param p = { .tz_id = tz_id, .trip_id = trip_id,
396 int thermal_notify_tz_gov_change(int tz_id, const char *name)
398 struct param p = { .tz_id = tz_id, .name = name };