Lines Matching refs:ctemp
200 int old, new, ctemp = -EINVAL;
222 ctemp = new;
228 if (ctemp < 0) {
242 rcar_thermal_write(priv, INTCTRL, (((ctemp - 0) << 8) |
243 ((ctemp - 1) << 0)));
249 return ctemp;
255 int ctemp;
257 ctemp = rcar_thermal_update_temp(priv);
258 if (ctemp < 0)
259 return ctemp;
264 *temp = MCELSIUS((ctemp * 5) - 65);
265 else if (ctemp < 24)
266 *temp = MCELSIUS(((ctemp * 55) - 720) / 10);
268 *temp = MCELSIUS((ctemp * 5) - 60);