diff options
-rw-r--r-- | drivers/hwmon/f71882fg.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/drivers/hwmon/f71882fg.c b/drivers/hwmon/f71882fg.c index a833797e96d3..f4998bf82ca5 100644 --- a/drivers/hwmon/f71882fg.c +++ b/drivers/hwmon/f71882fg.c | |||
@@ -448,6 +448,28 @@ static struct sensor_device_attribute_2 f71862fg_fan_attr[] = { | |||
448 | 0, 1), | 448 | 0, 1), |
449 | SENSOR_ATTR_2(pwm2_auto_point2_temp_hyst, S_IRUGO, | 449 | SENSOR_ATTR_2(pwm2_auto_point2_temp_hyst, S_IRUGO, |
450 | show_pwm_auto_point_temp_hyst, NULL, 3, 1), | 450 | show_pwm_auto_point_temp_hyst, NULL, 3, 1), |
451 | |||
452 | SENSOR_ATTR_2(pwm3, S_IRUGO|S_IWUSR, show_pwm, store_pwm, 0, 2), | ||
453 | SENSOR_ATTR_2(pwm3_enable, S_IRUGO|S_IWUSR, show_pwm_enable, | ||
454 | store_pwm_enable, 0, 2), | ||
455 | SENSOR_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO|S_IWUSR, | ||
456 | show_pwm_auto_point_pwm, store_pwm_auto_point_pwm, | ||
457 | 1, 2), | ||
458 | SENSOR_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO|S_IWUSR, | ||
459 | show_pwm_auto_point_pwm, store_pwm_auto_point_pwm, | ||
460 | 4, 2), | ||
461 | SENSOR_ATTR_2(pwm3_auto_point1_temp, S_IRUGO|S_IWUSR, | ||
462 | show_pwm_auto_point_temp, store_pwm_auto_point_temp, | ||
463 | 0, 2), | ||
464 | SENSOR_ATTR_2(pwm3_auto_point2_temp, S_IRUGO|S_IWUSR, | ||
465 | show_pwm_auto_point_temp, store_pwm_auto_point_temp, | ||
466 | 3, 2), | ||
467 | SENSOR_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO|S_IWUSR, | ||
468 | show_pwm_auto_point_temp_hyst, | ||
469 | store_pwm_auto_point_temp_hyst, | ||
470 | 0, 2), | ||
471 | SENSOR_ATTR_2(pwm3_auto_point2_temp_hyst, S_IRUGO, | ||
472 | show_pwm_auto_point_temp_hyst, NULL, 3, 2), | ||
451 | }; | 473 | }; |
452 | 474 | ||
453 | /* Fan / PWM attr for the f71882fg */ | 475 | /* Fan / PWM attr for the f71882fg */ |