Browse Source

hwmon: (w83795) Fix LSB reading of voltage limits

Wrong index caused the wrong register value to be read, resulting in
random LSB for voltage limits.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Jean Delvare 14 năm trước cách đây
mục cha
commit
5d2cd958f7
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      drivers/hwmon/w83795.c

+ 1 - 1
drivers/hwmon/w83795.c

@@ -1405,7 +1405,7 @@ show_in(struct device *dev, struct device_attribute *attr, char *buf)
 		lsb_idx = IN_LSB_SHIFT_IDX[index][IN_LSB_IDX];
 		val <<= 2;
 		val |= (data->in_lsb[lsb_idx][nr] >>
-			IN_LSB_SHIFT_IDX[lsb_idx][IN_LSB_SHIFT]) & 0x03;
+			IN_LSB_SHIFT_IDX[index][IN_LSB_SHIFT]) & 0x03;
 		if ((index >= 17) &&
 		    !((data->has_gain >> (index - 17)) & 1))
 			val *= 8;