Lines Matching refs:zone
84 struct thermal_zone_device *zone; member
244 thermal_zone_device_update(priv->tscs[i]->zone, in rcar_gen3_thermal_irq()
267 if (tsc->zone->ops->set_trips) in rcar_gen3_thermal_init_r8a7795es1()
295 if (tsc->zone->ops->set_trips) in rcar_gen3_thermal_init()
361 struct thermal_zone_device *zone = data; in rcar_gen3_hwmon_action() local
363 thermal_remove_hwmon_sysfs(zone); in rcar_gen3_hwmon_action()
400 struct thermal_zone_device *zone; in rcar_gen3_thermal_probe() local
446 zone = devm_thermal_zone_of_sensor_register(dev, i, tsc, in rcar_gen3_thermal_probe()
448 if (IS_ERR(zone)) { in rcar_gen3_thermal_probe()
450 ret = PTR_ERR(zone); in rcar_gen3_thermal_probe()
453 tsc->zone = zone; in rcar_gen3_thermal_probe()
458 tsc->zone->tzp->no_hwmon = false; in rcar_gen3_thermal_probe()
459 ret = thermal_add_hwmon_sysfs(tsc->zone); in rcar_gen3_thermal_probe()
463 ret = devm_add_action_or_reset(dev, rcar_gen3_hwmon_action, zone); in rcar_gen3_thermal_probe()
467 ret = of_thermal_get_ntrips(tsc->zone); in rcar_gen3_thermal_probe()
496 struct thermal_zone_device *zone = tsc->zone; in rcar_gen3_thermal_resume() local
499 if (zone->ops->set_trips) in rcar_gen3_thermal_resume()
500 rcar_gen3_thermal_set_trips(tsc, zone->prev_low_trip, in rcar_gen3_thermal_resume()
501 zone->prev_high_trip); in rcar_gen3_thermal_resume()