Skip to content

Commit

Permalink
iio: adc: ad7266: claim direct mode during sensor read
Browse files Browse the repository at this point in the history
Driver was checking for direct mode but not locking it down.
Use iio_device_claim_direct_mode() to guarantee device stays
in direct mode.

Signed-off-by: Alison Schofield <amsfield22@gmail.com>
Acked-by: Daniel Baluta <daniel.baluta@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
  • Loading branch information
Alison Schofield authored and Jonathan Cameron committed May 29, 2016
1 parent 14f295c commit c70df20
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions drivers/iio/adc/ad7266.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,11 @@ static int ad7266_read_raw(struct iio_dev *indio_dev,

switch (m) {
case IIO_CHAN_INFO_RAW:
if (iio_buffer_enabled(indio_dev))
return -EBUSY;

ret = ad7266_read_single(st, val, chan->address);
ret = iio_device_claim_direct_mode(indio_dev);
if (ret)
return ret;
ret = ad7266_read_single(st, val, chan->address);
iio_device_release_direct_mode(indio_dev);

*val = (*val >> 2) & 0xfff;
if (chan->scan_type.sign == 's')
Expand Down

0 comments on commit c70df20

Please sign in to comment.