Lines Matching +full:215 +full:v
362 long v; in temp_max_store() local
365 err = kstrtol(buf, 10, &v); in temp_max_store()
369 v = clamp_val(v / 1000, -128, 127) + 128; in temp_max_store()
373 FSCHMD_REG_TEMP_LIMIT[data->kind][index], v); in temp_max_store()
374 data->temp_max[index] = v; in temp_max_store()
436 unsigned long v; in fan_div_store() local
439 err = kstrtoul(buf, 10, &v); in fan_div_store()
443 switch (v) { in fan_div_store()
445 v = 1; in fan_div_store()
448 v = 2; in fan_div_store()
451 v = 3; in fan_div_store()
456 v); in fan_div_store()
467 reg |= v; in fan_div_store()
525 unsigned long v; in pwm_auto_point1_pwm_store() local
528 err = kstrtoul(buf, 10, &v); in pwm_auto_point1_pwm_store()
533 if (v || data->kind == fscsyl) { in pwm_auto_point1_pwm_store()
534 v = clamp_val(v, 128, 255); in pwm_auto_point1_pwm_store()
535 v = (v - 128) * 2 + 1; in pwm_auto_point1_pwm_store()
541 FSCHMD_REG_FAN_MIN[data->kind][index], v); in pwm_auto_point1_pwm_store()
542 data->fan_min[index] = v; in pwm_auto_point1_pwm_store()
570 unsigned long v; in alert_led_store() local
573 err = kstrtoul(buf, 10, &v); in alert_led_store()
581 if (v) in alert_led_store()
868 if (c == 'V') in watchdog_write()
1087 static const int watchdog_minors[] = { WATCHDOG_MINOR, 212, 213, 214, 215 }; in fschmd_probe()