diff options
Diffstat (limited to 'drivers/hwmon/w83795.c')
-rw-r--r-- | drivers/hwmon/w83795.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/w83795.c b/drivers/hwmon/w83795.c index 62deffcc64a3..77b4f7859df9 100644 --- a/drivers/hwmon/w83795.c +++ b/drivers/hwmon/w83795.c | |||
@@ -1335,7 +1335,7 @@ show_in(struct device *dev, struct device_attribute *attr, char *buf) | |||
1335 | case IN_READ: | 1335 | case IN_READ: |
1336 | /* calculate this value again by sensors as sensors3.conf */ | 1336 | /* calculate this value again by sensors as sensors3.conf */ |
1337 | if ((index >= 17) && | 1337 | if ((index >= 17) && |
1338 | ((data->has_gain >> (index - 17)) & 1)) | 1338 | !((data->has_gain >> (index - 17)) & 1)) |
1339 | val *= 8; | 1339 | val *= 8; |
1340 | break; | 1340 | break; |
1341 | case IN_MAX: | 1341 | case IN_MAX: |
@@ -1345,7 +1345,7 @@ show_in(struct device *dev, struct device_attribute *attr, char *buf) | |||
1345 | val |= (data->in_lsb[lsb_idx][nr] >> | 1345 | val |= (data->in_lsb[lsb_idx][nr] >> |
1346 | IN_LSB_SHIFT_IDX[lsb_idx][IN_LSB_SHIFT]) & 0x03; | 1346 | IN_LSB_SHIFT_IDX[lsb_idx][IN_LSB_SHIFT]) & 0x03; |
1347 | if ((index >= 17) && | 1347 | if ((index >= 17) && |
1348 | ((data->has_gain >> (index - 17)) & 1)) | 1348 | !((data->has_gain >> (index - 17)) & 1)) |
1349 | val *= 8; | 1349 | val *= 8; |
1350 | break; | 1350 | break; |
1351 | } | 1351 | } |
@@ -1373,7 +1373,7 @@ store_in(struct device *dev, struct device_attribute *attr, | |||
1373 | val = in_to_reg(index, val); | 1373 | val = in_to_reg(index, val); |
1374 | 1374 | ||
1375 | if ((index >= 17) && | 1375 | if ((index >= 17) && |
1376 | ((data->has_gain >> (index - 17)) & 1)) | 1376 | !((data->has_gain >> (index - 17)) & 1)) |
1377 | val /= 8; | 1377 | val /= 8; |
1378 | val = SENSORS_LIMIT(val, 0, 0x3FF); | 1378 | val = SENSORS_LIMIT(val, 0, 0x3FF); |
1379 | mutex_lock(&data->update_lock); | 1379 | mutex_lock(&data->update_lock); |