Lines Matching refs:ctemp
201 int old, new, ctemp = -EINVAL;
223 ctemp = new;
229 if (ctemp < 0) {
243 rcar_thermal_write(priv, INTCTRL, (((ctemp - 0) << 8) |
244 ((ctemp - 1) << 0)));
250 return ctemp;
256 int ctemp;
258 ctemp = rcar_thermal_update_temp(priv);
259 if (ctemp < 0)
260 return ctemp;
265 *temp = MCELSIUS((ctemp * 5) - 65);
266 else if (ctemp < 24)
267 *temp = MCELSIUS(((ctemp * 55) - 720) / 10);
269 *temp = MCELSIUS((ctemp * 5) - 60);