Lines Matching refs:zone
395 thermal_zone_of_add_sensor(struct device_node *zone, in thermal_zone_of_add_sensor() argument
402 tzd = thermal_zone_get_zone_by_name(zone->name); in thermal_zone_of_add_sensor()
866 struct thermal_zone_device *zone; in of_parse_thermal_zones() local
894 zone = thermal_zone_device_register(child->name, tz->ntrips, in of_parse_thermal_zones()
899 if (IS_ERR(zone)) { in of_parse_thermal_zones()
901 PTR_ERR(zone)); in of_parse_thermal_zones()
941 struct thermal_zone_device *zone; in of_thermal_destroy_zones() local
947 zone = thermal_zone_get_zone_by_name(child->name); in of_thermal_destroy_zones()
948 if (IS_ERR(zone)) in of_thermal_destroy_zones()
951 thermal_zone_device_unregister(zone); in of_thermal_destroy_zones()
952 kfree(zone->tzp); in of_thermal_destroy_zones()
953 kfree(zone->ops); in of_thermal_destroy_zones()
954 of_thermal_free_zone(zone->devdata); in of_thermal_destroy_zones()