Commit e70ab218 authored by Michael Hennerich's avatar Michael Hennerich Committed by Greg Kroah-Hartman

staging:iio:adc:ad7291: fix channel mapping

ideally in_voltageX_raw should map to AD7291 VINX.
Signed-off-by: default avatarMichael Hennerich <michael.hennerich@analog.com>
Signed-off-by: default avatarJonathan Cameron <jic23@cam.ac.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 1067291a
...@@ -435,7 +435,7 @@ static int ad7291_read_raw(struct iio_dev *indio_dev, ...@@ -435,7 +435,7 @@ static int ad7291_read_raw(struct iio_dev *indio_dev,
} }
/* Enable this channel alone */ /* Enable this channel alone */
regval = chip->command & (~AD7291_VOLTAGE_MASK); regval = chip->command & (~AD7291_VOLTAGE_MASK);
regval |= 1 << (chan->channel + 8); regval |= 1 << (15 - chan->channel);
ret = ad7291_i2c_write(chip, AD7291_COMMAND, regval); ret = ad7291_i2c_write(chip, AD7291_COMMAND, regval);
if (ret < 0) { if (ret < 0) {
mutex_unlock(&chip->state_lock); mutex_unlock(&chip->state_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment