Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1416769 > unrolled thread
| Started by | Alison Schofield <amsfield22@gmail.com> |
|---|---|
| First post | 2016-06-08 02:20 +0200 |
| Last post | 2016-06-11 18:00 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] iio: light: gp2ap020a00f: use iio helper function to lock direct mode Alison Schofield <amsfield22@gmail.com> - 2016-06-08 02:20 +0200
Re: [PATCH] iio: light: gp2ap020a00f: use iio helper function to lock direct mode Jacek Anaszewski <j.anaszewski@samsung.com> - 2016-06-08 09:20 +0200
Re: [PATCH] iio: light: gp2ap020a00f: use iio helper function to lock direct mode Jonathan Cameron <jic23@kernel.org> - 2016-06-11 18:00 +0200
| From | Alison Schofield <amsfield22@gmail.com> |
|---|---|
| Date | 2016-06-08 02:20 +0200 |
| Subject | [PATCH] iio: light: gp2ap020a00f: use iio helper function to lock direct mode |
| Message-ID | <rHznX-1aY-1@gated-at.bofh.it> |
Replace the code that guarantees the device stays in direct mode
with iio_device_claim_direct_mode() which does same. Includes a
tiny bit of refactoring (single case -> if) and simplified return
flow.
Signed-off-by: Alison Schofield <amsfield22@gmail.com>
Cc: Daniel Baluta <daniel.baluta@gmail.com>
---
drivers/iio/light/gp2ap020a00f.c | 18 +++++-------------
1 file changed, 5 insertions(+), 13 deletions(-)
diff --git a/drivers/iio/light/gp2ap020a00f.c b/drivers/iio/light/gp2ap020a00f.c
index 6d41086..af73af3 100644
--- a/drivers/iio/light/gp2ap020a00f.c
+++ b/drivers/iio/light/gp2ap020a00f.c
@@ -1287,22 +1287,14 @@ static int gp2ap020a00f_read_raw(struct iio_dev *indio_dev,
struct gp2ap020a00f_data *data = iio_priv(indio_dev);
int err = -EINVAL;
- mutex_lock(&data->lock);
-
- switch (mask) {
- case IIO_CHAN_INFO_RAW:
- if (iio_buffer_enabled(indio_dev)) {
- err = -EBUSY;
- goto error_unlock;
- }
+ if (mask == IIO_CHAN_INFO_RAW) {
+ err = iio_device_claim_direct_mode(indio_dev);
+ if (err)
+ return err;
err = gp2ap020a00f_read_channel(data, chan, val);
- break;
+ iio_device_release_direct_mode(indio_dev);
}
-
-error_unlock:
- mutex_unlock(&data->lock);
-
return err < 0 ? err : IIO_VAL_INT;
}
--
2.1.4
[toc] | [next] | [standalone]
| From | Jacek Anaszewski <j.anaszewski@samsung.com> |
|---|---|
| Date | 2016-06-08 09:20 +0200 |
| Message-ID | <rHFWp-5tG-17@gated-at.bofh.it> |
| In reply to | #1416769 |
Hi Alison,
On 06/08/2016 02:19 AM, Alison Schofield wrote:
> Replace the code that guarantees the device stays in direct mode
> with iio_device_claim_direct_mode() which does same. Includes a
> tiny bit of refactoring (single case -> if) and simplified return
> flow.
>
> Signed-off-by: Alison Schofield <amsfield22@gmail.com>
> Cc: Daniel Baluta <daniel.baluta@gmail.com>
> ---
> drivers/iio/light/gp2ap020a00f.c | 18 +++++-------------
> 1 file changed, 5 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/iio/light/gp2ap020a00f.c b/drivers/iio/light/gp2ap020a00f.c
> index 6d41086..af73af3 100644
> --- a/drivers/iio/light/gp2ap020a00f.c
> +++ b/drivers/iio/light/gp2ap020a00f.c
> @@ -1287,22 +1287,14 @@ static int gp2ap020a00f_read_raw(struct iio_dev *indio_dev,
> struct gp2ap020a00f_data *data = iio_priv(indio_dev);
> int err = -EINVAL;
>
> - mutex_lock(&data->lock);
> -
> - switch (mask) {
> - case IIO_CHAN_INFO_RAW:
> - if (iio_buffer_enabled(indio_dev)) {
> - err = -EBUSY;
> - goto error_unlock;
> - }
> + if (mask == IIO_CHAN_INFO_RAW) {
> + err = iio_device_claim_direct_mode(indio_dev);
> + if (err)
> + return err;
>
> err = gp2ap020a00f_read_channel(data, chan, val);
> - break;
> + iio_device_release_direct_mode(indio_dev);
> }
> -
> -error_unlock:
> - mutex_unlock(&data->lock);
> -
> return err < 0 ? err : IIO_VAL_INT;
> }
>
>
Nice patch.
Acked-by: Jacek Anaszewski <j.anaszewski@samsung.com>
--
Best regards,
Jacek Anaszewski
[toc] | [prev] | [next] | [standalone]
| From | Jonathan Cameron <jic23@kernel.org> |
|---|---|
| Date | 2016-06-11 18:00 +0200 |
| Message-ID | <rITuh-4Wm-15@gated-at.bofh.it> |
| In reply to | #1416956 |
On 08/06/16 08:17, Jacek Anaszewski wrote:
> Hi Alison,
>
> On 06/08/2016 02:19 AM, Alison Schofield wrote:
>> Replace the code that guarantees the device stays in direct mode
>> with iio_device_claim_direct_mode() which does same. Includes a
>> tiny bit of refactoring (single case -> if) and simplified return
>> flow.
>>
>> Signed-off-by: Alison Schofield <amsfield22@gmail.com>
>> Cc: Daniel Baluta <daniel.baluta@gmail.com>
>> ---
>> drivers/iio/light/gp2ap020a00f.c | 18 +++++-------------
>> 1 file changed, 5 insertions(+), 13 deletions(-)
>>
>> diff --git a/drivers/iio/light/gp2ap020a00f.c b/drivers/iio/light/gp2ap020a00f.c
>> index 6d41086..af73af3 100644
>> --- a/drivers/iio/light/gp2ap020a00f.c
>> +++ b/drivers/iio/light/gp2ap020a00f.c
>> @@ -1287,22 +1287,14 @@ static int gp2ap020a00f_read_raw(struct iio_dev *indio_dev,
>> struct gp2ap020a00f_data *data = iio_priv(indio_dev);
>> int err = -EINVAL;
>>
>> - mutex_lock(&data->lock);
>> -
>> - switch (mask) {
>> - case IIO_CHAN_INFO_RAW:
>> - if (iio_buffer_enabled(indio_dev)) {
>> - err = -EBUSY;
>> - goto error_unlock;
>> - }
>> + if (mask == IIO_CHAN_INFO_RAW) {
>> + err = iio_device_claim_direct_mode(indio_dev);
>> + if (err)
>> + return err;
>>
>> err = gp2ap020a00f_read_channel(data, chan, val);
>> - break;
>> + iio_device_release_direct_mode(indio_dev);
>> }
>> -
>> -error_unlock:
>> - mutex_unlock(&data->lock);
>> -
>> return err < 0 ? err : IIO_VAL_INT;
>> }
>>
>>
>
> Nice patch.
>
> Acked-by: Jacek Anaszewski <j.anaszewski@samsung.com>
Applied to the togreg branch of iio.git - initially pushed out as
testing for the autobuilders to play with it.
I would have slightly preferred the patch to not change the
case to an if (as really a slightly separate cleanup from
the main target of the patch).
Good changes though!
Thanks,
Jonathan
Thanks,
Jonathan
>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web