Skip to content

Commit

Permalink
iio: adjd_s311: Fix non-scan mode data read
Browse files Browse the repository at this point in the history
forgot to convert channel index to data register

Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
  • Loading branch information
Peter Meerwald authored and Jonathan Cameron committed Aug 19, 2013
1 parent d4e4ab8 commit 71f4264
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/iio/light/adjd_s311.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ static int adjd_s311_read_raw(struct iio_dev *indio_dev,

switch (mask) {
case IIO_CHAN_INFO_RAW:
ret = adjd_s311_read_data(indio_dev, chan->address, val);
ret = adjd_s311_read_data(indio_dev,
ADJD_S311_DATA_REG(chan->address), val);
if (ret < 0)
return ret;
return IIO_VAL_INT;
Expand Down

0 comments on commit 71f4264

Please sign in to comment.