Lines Matching defs:hysteresis
35 static int hysteresis = HYSTERESIS_DEFAULT;
36 module_param(hysteresis, int, 0444);
37 MODULE_PARM_DESC(hysteresis,
100 /* Use hysteresis before lowering speed again */
102 if (temp <= (temp_limits[i] - hysteresis))
140 if (hysteresis < 1000 || hysteresis > 10000) {
141 dev_err(&pdev->dev, "Invalid hysteresis %d (must be between 1000 and 10000)\n",
142 hysteresis);
143 hysteresis = HYSTERESIS_DEFAULT;