Lines Matching defs:temp
34 * sensors : hd-temp
46 * sensors : hd-temp
58 * sensors : hd-temp
75 * sensors : cpu-temp cpu-power
330 s32 new_setpoint, temp, scaled, cputarget;
340 rc = wf_sensor_get(sensor_hd_temp, &temp);
342 printk(KERN_WARNING "windfarm: HD temp sensor error %d\n",
348 DBG("wf_smu: System Fans tick ! HD temp: %d.%03d\n",
349 FIX32TOPRINT(temp));
351 if (temp > (st->pid.param.itarget + 0x50000))
354 new_setpoint = wf_pid_run(&st->pid, temp);
474 s32 new_setpoint, temp, power, systarget;
484 rc = wf_sensor_get(sensor_cpu_temp, &temp);
486 printk(KERN_WARNING "windfarm: CPU temp sensor error %d\n",
500 DBG("wf_smu: CPU Fans tick ! CPU temp: %d.%03d, power: %d.%03d\n",
501 FIX32TOPRINT(temp), FIX32TOPRINT(power));
504 if (temp > 0x4a0000)
507 if (temp > st->pid.param.tmax)
510 new_setpoint = wf_cpu_pid_run(&st->pid, power, temp);
660 if (sensor_cpu_temp == NULL && !strcmp(sr->name, "cpu-temp")) {
665 if (sensor_hd_temp == NULL && !strcmp(sr->name, "hd-temp")) {