Lines Matching refs:zone
400 thermal_zone_of_add_sensor(struct device_node *zone, in thermal_zone_of_add_sensor() argument
407 tzd = thermal_zone_get_zone_by_name(zone->name); in thermal_zone_of_add_sensor()
885 struct thermal_zone_device *zone; in of_parse_thermal_zones() local
925 zone = thermal_zone_device_register(child->name, tz->ntrips, in of_parse_thermal_zones()
930 if (IS_ERR(zone)) { in of_parse_thermal_zones()
932 PTR_ERR(zone)); in of_parse_thermal_zones()
972 struct thermal_zone_device *zone; in of_thermal_destroy_zones() local
978 zone = thermal_zone_get_zone_by_name(child->name); in of_thermal_destroy_zones()
979 if (IS_ERR(zone)) in of_thermal_destroy_zones()
982 thermal_zone_device_unregister(zone); in of_thermal_destroy_zones()
983 kfree(zone->tzp); in of_thermal_destroy_zones()
984 kfree(zone->ops); in of_thermal_destroy_zones()
985 of_thermal_free_zone(zone->devdata); in of_thermal_destroy_zones()