thermal_prop      202 drivers/thermal/intel/int340x_thermal/int3400_thermal.c 	char *thermal_prop[5];
thermal_prop      209 drivers/thermal/intel/int340x_thermal/int3400_thermal.c 		thermal_prop[0] = kasprintf(GFP_KERNEL, "NAME=%s",
thermal_prop      211 drivers/thermal/intel/int340x_thermal/int3400_thermal.c 		thermal_prop[1] = kasprintf(GFP_KERNEL, "TEMP=%d",
thermal_prop      213 drivers/thermal/intel/int340x_thermal/int3400_thermal.c 		thermal_prop[2] = kasprintf(GFP_KERNEL, "TRIP=");
thermal_prop      214 drivers/thermal/intel/int340x_thermal/int3400_thermal.c 		thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d",
thermal_prop      216 drivers/thermal/intel/int340x_thermal/int3400_thermal.c 		thermal_prop[4] = NULL;
thermal_prop      218 drivers/thermal/intel/int340x_thermal/int3400_thermal.c 				thermal_prop);
thermal_prop       27 drivers/thermal/user_space.c 	char *thermal_prop[5];
thermal_prop       31 drivers/thermal/user_space.c 	thermal_prop[0] = kasprintf(GFP_KERNEL, "NAME=%s", tz->type);
thermal_prop       32 drivers/thermal/user_space.c 	thermal_prop[1] = kasprintf(GFP_KERNEL, "TEMP=%d", tz->temperature);
thermal_prop       33 drivers/thermal/user_space.c 	thermal_prop[2] = kasprintf(GFP_KERNEL, "TRIP=%d", trip);
thermal_prop       34 drivers/thermal/user_space.c 	thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d", tz->notify_event);
thermal_prop       35 drivers/thermal/user_space.c 	thermal_prop[4] = NULL;
thermal_prop       36 drivers/thermal/user_space.c 	kobject_uevent_env(&tz->device.kobj, KOBJ_CHANGE, thermal_prop);
thermal_prop       38 drivers/thermal/user_space.c 		kfree(thermal_prop[i]);