trip_temp_attrs   523 drivers/thermal/thermal_sysfs.c 	tz->trip_temp_attrs = kcalloc(tz->trips, sizeof(*tz->trip_temp_attrs),
trip_temp_attrs   525 drivers/thermal/thermal_sysfs.c 	if (!tz->trip_temp_attrs) {
trip_temp_attrs   536 drivers/thermal/thermal_sysfs.c 			kfree(tz->trip_temp_attrs);
trip_temp_attrs   544 drivers/thermal/thermal_sysfs.c 		kfree(tz->trip_temp_attrs);
trip_temp_attrs   563 drivers/thermal/thermal_sysfs.c 		snprintf(tz->trip_temp_attrs[indx].name, THERMAL_NAME_LENGTH,
trip_temp_attrs   566 drivers/thermal/thermal_sysfs.c 		sysfs_attr_init(&tz->trip_temp_attrs[indx].attr.attr);
trip_temp_attrs   567 drivers/thermal/thermal_sysfs.c 		tz->trip_temp_attrs[indx].attr.attr.name =
trip_temp_attrs   568 drivers/thermal/thermal_sysfs.c 						tz->trip_temp_attrs[indx].name;
trip_temp_attrs   569 drivers/thermal/thermal_sysfs.c 		tz->trip_temp_attrs[indx].attr.attr.mode = S_IRUGO;
trip_temp_attrs   570 drivers/thermal/thermal_sysfs.c 		tz->trip_temp_attrs[indx].attr.show = trip_point_temp_show;
trip_temp_attrs   573 drivers/thermal/thermal_sysfs.c 			tz->trip_temp_attrs[indx].attr.attr.mode |= S_IWUSR;
trip_temp_attrs   574 drivers/thermal/thermal_sysfs.c 			tz->trip_temp_attrs[indx].attr.store =
trip_temp_attrs   577 drivers/thermal/thermal_sysfs.c 		attrs[indx + tz->trips] = &tz->trip_temp_attrs[indx].attr.attr;
trip_temp_attrs   617 drivers/thermal/thermal_sysfs.c 	kfree(tz->trip_temp_attrs);
trip_temp_attrs   196 include/linux/thermal.h 	struct thermal_attr *trip_temp_attrs;