diff options
Diffstat (limited to 'drivers/hwmon/lm92.c')
-rw-r--r-- | drivers/hwmon/lm92.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/hwmon/lm92.c b/drivers/hwmon/lm92.c index cfaf70b9cba7..2a91974a10bb 100644 --- a/drivers/hwmon/lm92.c +++ b/drivers/hwmon/lm92.c | |||
@@ -181,8 +181,8 @@ static ssize_t show_temp_hyst(struct device *dev, | |||
181 | - TEMP_FROM_REG(data->temp[t_hyst])); | 181 | - TEMP_FROM_REG(data->temp[t_hyst])); |
182 | } | 182 | } |
183 | 183 | ||
184 | static ssize_t show_temp_min_hyst(struct device *dev, | 184 | static ssize_t temp1_min_hyst_show(struct device *dev, |
185 | struct device_attribute *attr, char *buf) | 185 | struct device_attribute *attr, char *buf) |
186 | { | 186 | { |
187 | struct lm92_data *data = lm92_update_device(dev); | 187 | struct lm92_data *data = lm92_update_device(dev); |
188 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[t_min]) | 188 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[t_min]) |
@@ -213,7 +213,7 @@ static ssize_t set_temp_hyst(struct device *dev, | |||
213 | return count; | 213 | return count; |
214 | } | 214 | } |
215 | 215 | ||
216 | static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, | 216 | static ssize_t alarms_show(struct device *dev, struct device_attribute *attr, |
217 | char *buf) | 217 | char *buf) |
218 | { | 218 | { |
219 | struct lm92_data *data = lm92_update_device(dev); | 219 | struct lm92_data *data = lm92_update_device(dev); |
@@ -235,11 +235,11 @@ static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temp_hyst, | |||
235 | set_temp_hyst, t_crit); | 235 | set_temp_hyst, t_crit); |
236 | static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp, set_temp, | 236 | static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp, set_temp, |
237 | t_min); | 237 | t_min); |
238 | static DEVICE_ATTR(temp1_min_hyst, S_IRUGO, show_temp_min_hyst, NULL); | 238 | static DEVICE_ATTR_RO(temp1_min_hyst); |
239 | static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp, set_temp, | 239 | static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp, set_temp, |
240 | t_max); | 240 | t_max); |
241 | static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IRUGO, show_temp_hyst, NULL, t_max); | 241 | static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IRUGO, show_temp_hyst, NULL, t_max); |
242 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); | 242 | static DEVICE_ATTR_RO(alarms); |
243 | static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 2); | 243 | static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 2); |
244 | static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 0); | 244 | static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 0); |
245 | static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 1); | 245 | static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 1); |