Lines Matching refs:tz

40 	struct thermal_zone_device *tz;  member
59 struct thermal_zone_device *tz = temp->tz; in temp_input_show() local
61 ret = thermal_zone_get_temp(tz, &temperature); in temp_input_show()
77 struct thermal_zone_device *tz = temp->tz; in temp_crit_show() local
81 mutex_lock(&tz->lock); in temp_crit_show()
83 if (device_is_registered(&tz->device)) in temp_crit_show()
84 ret = tz->ops->get_crit_temp(tz, &temperature); in temp_crit_show()
88 mutex_unlock(&tz->lock); in temp_crit_show()
98 thermal_hwmon_lookup_by_type(const struct thermal_zone_device *tz) in thermal_hwmon_lookup_by_type() argument
105 strcpy(type, tz->type); in thermal_hwmon_lookup_by_type()
120 const struct thermal_zone_device *tz) in thermal_hwmon_lookup_temp() argument
126 if (temp->tz == tz) { in thermal_hwmon_lookup_temp()
135 static bool thermal_zone_crit_temp_valid(struct thermal_zone_device *tz) in thermal_zone_crit_temp_valid() argument
138 return tz->ops->get_crit_temp && !tz->ops->get_crit_temp(tz, &temp); in thermal_zone_crit_temp_valid()
141 int thermal_add_hwmon_sysfs(struct thermal_zone_device *tz) in thermal_add_hwmon_sysfs() argument
148 hwmon = thermal_hwmon_lookup_by_type(tz); in thermal_add_hwmon_sysfs()
159 strscpy(hwmon->type, tz->type, THERMAL_NAME_LENGTH); in thermal_add_hwmon_sysfs()
161 hwmon->device = hwmon_device_register_for_thermal(&tz->device, in thermal_add_hwmon_sysfs()
175 temp->tz = tz; in thermal_add_hwmon_sysfs()
188 if (thermal_zone_crit_temp_valid(tz)) { in thermal_add_hwmon_sysfs()
224 void thermal_remove_hwmon_sysfs(struct thermal_zone_device *tz) in thermal_remove_hwmon_sysfs() argument
229 hwmon = thermal_hwmon_lookup_by_type(tz); in thermal_remove_hwmon_sysfs()
232 dev_dbg(&tz->device, "hwmon device lookup failed!\n"); in thermal_remove_hwmon_sysfs()
236 temp = thermal_hwmon_lookup_temp(hwmon, tz); in thermal_remove_hwmon_sysfs()
239 dev_dbg(&tz->device, "temperature input lookup failed!\n"); in thermal_remove_hwmon_sysfs()
244 if (thermal_zone_crit_temp_valid(tz)) in thermal_remove_hwmon_sysfs()
267 int devm_thermal_add_hwmon_sysfs(struct device *dev, struct thermal_zone_device *tz) in devm_thermal_add_hwmon_sysfs() argument
279 ret = thermal_add_hwmon_sysfs(tz); in devm_thermal_add_hwmon_sysfs()
286 *ptr = tz; in devm_thermal_add_hwmon_sysfs()