Lines Matching defs:temp_limits
27 static int temp_limits[3] = {
30 module_param_array(temp_limits, int, NULL, 0444);
31 MODULE_PARM_DESC(temp_limits,
92 for (i = min_speed; i < ARRAY_SIZE(temp_limits); i++) {
93 if (temp < temp_limits[i])
100 for (i = min_speed; i < ARRAY_SIZE(temp_limits); i++) {
101 if (temp <= (temp_limits[i] - hysteresis))
129 for (i = 0; i < ARRAY_SIZE(temp_limits); i++) {
130 if (temp_limits[i] < 20000 || temp_limits[i] > 90000) {
132 temp_limits[i]);
133 temp_limits[0] = TEMP_LIMIT0_DEFAULT;
134 temp_limits[1] = TEMP_LIMIT1_DEFAULT;
135 temp_limits[2] = TEMP_LIMIT2_DEFAULT;