Lines Matching refs:temp_limits
28 static int temp_limits[3] = {
31 module_param_array(temp_limits, int, NULL, 0444);
32 MODULE_PARM_DESC(temp_limits,
93 for (i = min_speed; i < ARRAY_SIZE(temp_limits); i++) {
94 if (temp < temp_limits[i])
101 for (i = min_speed; i < ARRAY_SIZE(temp_limits); i++) {
102 if (temp <= (temp_limits[i] - hysteresis))
130 for (i = 0; i < ARRAY_SIZE(temp_limits); i++) {
131 if (temp_limits[i] < 20000 || temp_limits[i] > 90000) {
133 temp_limits[i]);
134 temp_limits[0] = TEMP_LIMIT0_DEFAULT;
135 temp_limits[1] = TEMP_LIMIT1_DEFAULT;
136 temp_limits[2] = TEMP_LIMIT2_DEFAULT;