Lines Matching defs:temp
13 * Chip #vin #fan #pwm #temp chip ID
17 * (1) Total number of vin and temp inputs is 32.
313 s8 temp[4][NCT6683_NUM_REG_MON];/* [0]=min, [1]=max, [2]=hyst,
623 data->temp[j][i] =
800 return sprintf(buf, "%d\n", data->temp[index][nr] * 1000);
809 int temp = data->temp[1][nr] - data->temp[2][nr];
811 return sprintf(buf, "%d\n", temp * 1000);
862 int temp = index / 7; /* temp index */
873 if (nr == 6 && get_temp_type(data->temp_src[temp]) == 0)
879 SENSOR_TEMPLATE(temp_input, "temp%d_input", S_IRUGO, show_temp16, NULL, 0);
880 SENSOR_TEMPLATE(temp_label, "temp%d_label", S_IRUGO, show_temp_label, NULL, 0);
881 SENSOR_TEMPLATE_2(temp_min, "temp%d_min", S_IRUGO, show_temp8, NULL, 0, 0);
882 SENSOR_TEMPLATE_2(temp_max, "temp%d_max", S_IRUGO, show_temp8, NULL, 0, 1);
883 SENSOR_TEMPLATE(temp_max_hyst, "temp%d_max_hyst", S_IRUGO, show_temp_hyst, NULL,
885 SENSOR_TEMPLATE_2(temp_crit, "temp%d_crit", S_IRUGO, show_temp8, NULL, 0, 3);
886 SENSOR_TEMPLATE(temp_type, "temp%d_type", S_IRUGO, show_temp_type, NULL, 0);