linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Jack Andersen <jackoalan@gmail.com>
Cc: Alexandru Ardelean <alexandru.ardelean@analog.com>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] iio: dln2-adc: fix iio_triggered_buffer_postenable() position
Date: Sat, 2 Nov 2019 14:37:50 +0000	[thread overview]
Message-ID: <20191102143750.17beeb16@archlinux> (raw)
In-Reply-To: <CAPHBK3a-EQVZzF-LZC-jNCinF3i09PRG7ZA+hporMr5JvFpDtQ@mail.gmail.com>

On Tue, 29 Oct 2019 11:58:16 -1000
Jack Andersen <jackoalan@gmail.com> wrote:

> These changes look fine to me as well.
> 
> I no longer have access to a DLN2 for empirical testing, but since this is
> mainly integration improvements with the IIO side of things, it shouldn't make
> a difference for the hardware.

Whilst I have one of these, it'll will be a while before I'm in any position
to test it.  Hence let's gamble a tiny bit.

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

Thanks,

Jonathan

> 
> 
> 
> On Sun, 27 Oct 2019 at 06:56, Jonathan Cameron <jic23@kernel.org> wrote:
> >
> > On Wed, 23 Oct 2019 11:26:34 +0300
> > Alexandru Ardelean <alexandru.ardelean@analog.com> wrote:
> >  
> > > The iio_triggered_buffer_postenable() hook should be called first to
> > > attach the poll function. The iio_triggered_buffer_predisable() hook is
> > > called last (as is it should).
> > >
> > > This change moves iio_triggered_buffer_postenable() to be called first. It
> > > adds iio_triggered_buffer_predisable() on the error paths of the postenable
> > > hook.
> > > For the predisable hook, some code-paths have been changed to make sure
> > > that the iio_triggered_buffer_predisable() hook gets called in case there
> > > is an error before it.
> > >
> > > Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com>  
> > +CC Jack who wrote the driver.
> >
> > Looks fine to me, but I always like these to sit for a while and ideally get
> > review from the authors / maintainers of the drivers.
> >
> > Thanks,
> >
> > Jonathan
> >  
> > > ---
> > >  drivers/iio/adc/dln2-adc.c | 20 ++++++++++++++------
> > >  1 file changed, 14 insertions(+), 6 deletions(-)
> > >
> > > diff --git a/drivers/iio/adc/dln2-adc.c b/drivers/iio/adc/dln2-adc.c
> > > index 5fa78c273a25..65c7c9329b1c 100644
> > > --- a/drivers/iio/adc/dln2-adc.c
> > > +++ b/drivers/iio/adc/dln2-adc.c
> > > @@ -524,6 +524,10 @@ static int dln2_adc_triggered_buffer_postenable(struct iio_dev *indio_dev)
> > >       u16 conflict;
> > >       unsigned int trigger_chan;
> > >
> > > +     ret = iio_triggered_buffer_postenable(indio_dev);
> > > +     if (ret)
> > > +             return ret;
> > > +
> > >       mutex_lock(&dln2->mutex);
> > >
> > >       /* Enable ADC */
> > > @@ -537,6 +541,7 @@ static int dln2_adc_triggered_buffer_postenable(struct iio_dev *indio_dev)
> > >                               (int)conflict);
> > >                       ret = -EBUSY;
> > >               }
> > > +             iio_triggered_buffer_predisable(indio_dev);
> > >               return ret;
> > >       }
> > >
> > > @@ -550,6 +555,7 @@ static int dln2_adc_triggered_buffer_postenable(struct iio_dev *indio_dev)
> > >               mutex_unlock(&dln2->mutex);
> > >               if (ret < 0) {
> > >                       dev_dbg(&dln2->pdev->dev, "Problem in %s\n", __func__);
> > > +                     iio_triggered_buffer_predisable(indio_dev);
> > >                       return ret;
> > >               }
> > >       } else {
> > > @@ -557,12 +563,12 @@ static int dln2_adc_triggered_buffer_postenable(struct iio_dev *indio_dev)
> > >               mutex_unlock(&dln2->mutex);
> > >       }
> > >
> > > -     return iio_triggered_buffer_postenable(indio_dev);
> > > +     return 0;
> > >  }
> > >
> > >  static int dln2_adc_triggered_buffer_predisable(struct iio_dev *indio_dev)
> > >  {
> > > -     int ret;
> > > +     int ret, ret2;
> > >       struct dln2_adc *dln2 = iio_priv(indio_dev);
> > >
> > >       mutex_lock(&dln2->mutex);
> > > @@ -577,12 +583,14 @@ static int dln2_adc_triggered_buffer_predisable(struct iio_dev *indio_dev)
> > >       ret = dln2_adc_set_port_enabled(dln2, false, NULL);
> > >
> > >       mutex_unlock(&dln2->mutex);
> > > -     if (ret < 0) {
> > > +     if (ret < 0)
> > >               dev_dbg(&dln2->pdev->dev, "Problem in %s\n", __func__);
> > > -             return ret;
> > > -     }
> > >
> > > -     return iio_triggered_buffer_predisable(indio_dev);
> > > +     ret2 = iio_triggered_buffer_predisable(indio_dev);
> > > +     if (ret == 0)
> > > +             ret = ret2;
> > > +
> > > +     return ret;
> > >  }
> > >
> > >  static const struct iio_buffer_setup_ops dln2_adc_buffer_setup_ops = {  
> >  


      reply	other threads:[~2019-11-02 14:37 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-23  8:26 [PATCH] iio: dln2-adc: fix iio_triggered_buffer_postenable() position Alexandru Ardelean
2019-10-27 16:56 ` Jonathan Cameron
2019-10-29 21:58   ` Jack Andersen
2019-11-02 14:37     ` Jonathan Cameron [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191102143750.17beeb16@archlinux \
    --to=jic23@kernel.org \
    --cc=alexandru.ardelean@analog.com \
    --cc=jackoalan@gmail.com \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).