Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1408615

Re: [PATCH 1/7] iio: adc: ad7266: claim direct mode during sensor read

From Jonathan Cameron <jic23@kernel.org>
Newsgroups linux.kernel
Subject Re: [PATCH 1/7] iio: adc: ad7266: claim direct mode during sensor read
Date 2016-05-29 19:10 +0200
Message-ID <rEcnU-Fq-5@gated-at.bofh.it> (permalink)
References <rCq1X-7jq-3@gated-at.bofh.it> <rCq1X-7jq-11@gated-at.bofh.it> <rCEoi-8jG-19@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On 25/05/16 11:33, Daniel Baluta wrote:
> On Tue, May 24, 2016 at 10:16 PM, Alison Schofield <amsfield22@gmail.com> wrote:
>> 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>
>> Cc: Daniel Baluta <daniel.baluta@gmail.com>
> 
> Acked-by: Daniel Baluta <daniel.baluta@gmail.com>
Looks good.

Applied to the togreg branch of iio.git - initially pushed out as testing
for the autobuilders to play with it.

Thanks,

Jonathan
> 
>> ---
>>  drivers/iio/adc/ad7266.c | 7 +++----
>>  1 file changed, 3 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/iio/adc/ad7266.c b/drivers/iio/adc/ad7266.c
>> index 21e19b6..01240ae 100644
>> --- a/drivers/iio/adc/ad7266.c
>> +++ b/drivers/iio/adc/ad7266.c
>> @@ -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')
>> --
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/7] iio: adc: clean up claims on direct mode in ad7* drivers Alison Schofield <amsfield22@gmail.com> - 2016-05-24 21:20 +0200
  [PATCH 4/7] iio: adc: ad7476: use iio helper function to guarantee  direct mode Alison Schofield <amsfield22@gmail.com> - 2016-05-24 21:20 +0200
    Re: [PATCH 4/7] iio: adc: ad7476: use iio helper function to  guarantee direct mode Daniel Baluta <daniel.baluta@gmail.com> - 2016-05-25 12:40 +0200
      Re: [PATCH 4/7] iio: adc: ad7476: use iio helper function to  guarantee direct mode Jonathan Cameron <jic23@kernel.org> - 2016-05-29 20:40 +0200
  [PATCH 1/7] iio: adc: ad7266: claim direct mode during sensor read Alison Schofield <amsfield22@gmail.com> - 2016-05-24 21:20 +0200
    Re: [PATCH 1/7] iio: adc: ad7266: claim direct mode during sensor read Daniel Baluta <daniel.baluta@gmail.com> - 2016-05-25 12:40 +0200
      Re: [PATCH 1/7] iio: adc: ad7266: claim direct mode during sensor  read Jonathan Cameron <jic23@kernel.org> - 2016-05-29 19:10 +0200
  [PATCH 5/7] iio: adc: ad7887: use iio helper function to guarantee  direct mode Alison Schofield <amsfield22@gmail.com> - 2016-05-24 21:20 +0200
    Re: [PATCH 5/7] iio: adc: ad7887: use iio helper function to  guarantee direct mode Daniel Baluta <daniel.baluta@gmail.com> - 2016-05-25 12:40 +0200
      Re: [PATCH 5/7] iio: adc: ad7887: use iio helper function to  guarantee direct mode Jonathan Cameron <jic23@kernel.org> - 2016-05-29 20:40 +0200
  [PATCH 6/7] iio: adc: ad7923: use iio helper function to guarantee  direct mode Alison Schofield <amsfield22@gmail.com> - 2016-05-24 21:30 +0200
    Re: [PATCH 6/7] iio: adc: ad7923: use iio helper function to  guarantee direct mode Daniel Baluta <daniel.baluta@gmail.com> - 2016-05-25 12:50 +0200
      Re: [PATCH 6/7] iio: adc: ad7923: use iio helper function to  guarantee direct mode Jonathan Cameron <jic23@kernel.org> - 2016-05-29 20:40 +0200
  [PATCH 7/7] iio: adc: ad799x: use iio helper function to guarantee  direct mode Alison Schofield <amsfield22@gmail.com> - 2016-05-24 21:30 +0200
    Re: [PATCH 7/7] iio: adc: ad799x: use iio helper function to  guarantee direct mode Daniel Baluta <daniel.baluta@gmail.com> - 2016-05-25 12:50 +0200
      Re: [PATCH 7/7] iio: adc: ad799x: use iio helper function to  guarantee direct mode Jonathan Cameron <jic23@kernel.org> - 2016-05-29 20:40 +0200

csiph-web