Lines Matching refs:thermal_prop
451 char *thermal_prop[5]; in int3400_notify() local
475 thermal_prop[0] = kasprintf(GFP_KERNEL, "NAME=%s", thermal_zone_device_type(priv->thermal)); in int3400_notify()
476 thermal_prop[1] = kasprintf(GFP_KERNEL, "TEMP=%d", INT3400_FAKE_TEMP); in int3400_notify()
477 thermal_prop[2] = kasprintf(GFP_KERNEL, "TRIP="); in int3400_notify()
478 thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d", therm_event); in int3400_notify()
479 thermal_prop[4] = NULL; in int3400_notify()
480 kobject_uevent_env(&dev->kobj, KOBJ_CHANGE, thermal_prop); in int3400_notify()
481 kfree(thermal_prop[0]); in int3400_notify()
482 kfree(thermal_prop[1]); in int3400_notify()
483 kfree(thermal_prop[2]); in int3400_notify()
484 kfree(thermal_prop[3]); in int3400_notify()