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