diff options
Diffstat (limited to 'drivers/i2c/chips/via686a.c')
-rw-r--r-- | drivers/i2c/chips/via686a.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/i2c/chips/via686a.c b/drivers/i2c/chips/via686a.c index e7a686267942..3140ae8882a9 100644 --- a/drivers/i2c/chips/via686a.c +++ b/drivers/i2c/chips/via686a.c | |||
@@ -292,8 +292,6 @@ static inline long TEMP_FROM_REG10(u16 val) | |||
292 | tempLUT[eightBits + 1] * twoBits) * 25; | 292 | tempLUT[eightBits + 1] * twoBits) * 25; |
293 | } | 293 | } |
294 | 294 | ||
295 | #define ALARMS_FROM_REG(val) (val) | ||
296 | |||
297 | #define DIV_FROM_REG(val) (1 << (val)) | 295 | #define DIV_FROM_REG(val) (1 << (val)) |
298 | #define DIV_TO_REG(val) ((val)==8?3:(val)==4?2:(val)==1?0:1) | 296 | #define DIV_TO_REG(val) ((val)==8?3:(val)==4?2:(val)==1?0:1) |
299 | 297 | ||
@@ -570,7 +568,7 @@ show_fan_offset(2); | |||
570 | /* Alarms */ | 568 | /* Alarms */ |
571 | static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf) { | 569 | static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf) { |
572 | struct via686a_data *data = via686a_update_device(dev); | 570 | struct via686a_data *data = via686a_update_device(dev); |
573 | return sprintf(buf,"%d\n", ALARMS_FROM_REG(data->alarms)); | 571 | return sprintf(buf, "%u\n", data->alarms); |
574 | } | 572 | } |
575 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); | 573 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); |
576 | 574 | ||