Lines Matching defs:fanon
56 * No matter what value the user puts into the fanon variable, turn on the fan
75 static unsigned int fanon = ACERHDF_DEFAULT_TEMP_FANON;
88 module_param(fanon, uint, 0600);
89 MODULE_PARM_DESC(fanon, "Turn the fan on above this temperature");
333 if (fanon > ACERHDF_MAX_FANON) {
334 pr_err("fanon temperature too high, set to %d\n",
336 fanon = ACERHDF_MAX_FANON;
339 if (fanon < fanoff) {
340 pr_err("fanoff temperature (%d) is above fanon temperature (%d), clamping to %d\n",
341 fanoff, fanon, fanon);
342 fanoff = fanon;
345 trips[0].temperature = fanon;
346 trips[0].hysteresis = fanon - fanoff;