Lines Matching refs:temp
73 * @temp: a valid pointer to where to store the resulting temperature.
76 * temperature and fill @temp.
84 int __thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp)
93 ret = tz->ops->get_temp(tz, temp);
109 if (!ret && *temp < crit_temp)
110 *temp = tz->emul_temperature;
122 * @temp: a valid pointer to where to store the resulting temperature.
125 * temperature and fill @temp.
129 int thermal_zone_get_temp(struct thermal_zone_device *tz, int *temp)
144 ret = __thermal_zone_get_temp(tz, temp);