|
@@ -437,12 +437,12 @@ static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
|
|
show_temp, NULL, offset - 1); \
|
|
show_temp, NULL, offset - 1); \
|
|
static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
|
|
static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
|
|
show_temp_max, set_temp_max, offset - 1); \
|
|
show_temp_max, set_temp_max, offset - 1); \
|
|
-static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
|
|
|
|
|
|
+static SENSOR_DEVICE_ATTR(temp##offset##_max_hyst, S_IRUGO | S_IWUSR, \
|
|
show_temp_min, set_temp_min, offset - 1)
|
|
show_temp_min, set_temp_min, offset - 1)
|
|
|
|
|
|
static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp0, NULL);
|
|
static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp0, NULL);
|
|
static DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR, show_temp0_max, set_temp0_max);
|
|
static DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR, show_temp0_max, set_temp0_max);
|
|
-static DEVICE_ATTR(temp1_min, S_IRUGO | S_IWUSR, show_temp0_min, set_temp0_min);
|
|
|
|
|
|
+static DEVICE_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR, show_temp0_min, set_temp0_min);
|
|
|
|
|
|
define_temperature_sysfs(2);
|
|
define_temperature_sysfs(2);
|
|
define_temperature_sysfs(3);
|
|
define_temperature_sysfs(3);
|
|
@@ -451,7 +451,7 @@ define_temperature_sysfs(5);
|
|
define_temperature_sysfs(6);
|
|
define_temperature_sysfs(6);
|
|
|
|
|
|
#define CFG_INFO_TEMP(id) { &sensor_dev_attr_temp##id##_input.dev_attr, \
|
|
#define CFG_INFO_TEMP(id) { &sensor_dev_attr_temp##id##_input.dev_attr, \
|
|
- &sensor_dev_attr_temp##id##_min.dev_attr, \
|
|
|
|
|
|
+ &sensor_dev_attr_temp##id##_max_hyst.dev_attr, \
|
|
&sensor_dev_attr_temp##id##_max.dev_attr }
|
|
&sensor_dev_attr_temp##id##_max.dev_attr }
|
|
#define CFG_INFO_VOLT(id) { &sensor_dev_attr_in##id##_input.dev_attr, \
|
|
#define CFG_INFO_VOLT(id) { &sensor_dev_attr_in##id##_input.dev_attr, \
|
|
&sensor_dev_attr_in##id##_min.dev_attr, \
|
|
&sensor_dev_attr_in##id##_min.dev_attr, \
|
|
@@ -464,7 +464,7 @@ struct str_device_attr_table {
|
|
};
|
|
};
|
|
|
|
|
|
static struct str_device_attr_table cfg_info_temp[] = {
|
|
static struct str_device_attr_table cfg_info_temp[] = {
|
|
- { &dev_attr_temp1_input, &dev_attr_temp1_min, &dev_attr_temp1_max },
|
|
|
|
|
|
+ { &dev_attr_temp1_input, &dev_attr_temp1_max_hyst, &dev_attr_temp1_max },
|
|
CFG_INFO_TEMP(2),
|
|
CFG_INFO_TEMP(2),
|
|
CFG_INFO_TEMP(3),
|
|
CFG_INFO_TEMP(3),
|
|
CFG_INFO_TEMP(4),
|
|
CFG_INFO_TEMP(4),
|