All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michael Welling <mwelling@ieee.org>
To: Fabio Estevam <festevam@gmail.com>
Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>,
	Jean-Francois Moine <moinejf@free.fr>,
	Mike Turquette <mturquette@linaro.org>,
	Stephen Boyd <sboyd@codeaurora.org>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	Russell King <rmk+linux@arm.linux.org.uk>,
	linux-clk@vger.kernel.org,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 3/4] clk: si5351: Do not pass struct clk in platform_data
Date: Thu, 30 Apr 2015 13:30:43 -0500	[thread overview]
Message-ID: <20150430183043.GA21890@deathray> (raw)
In-Reply-To: <CAOMZO5BYnE2epGrWbnNnaqEt1r6+xoPYWKtjc8w-Ze22aitgXA@mail.gmail.com>

On Thu, Apr 30, 2015 at 03:20:38PM -0300, Fabio Estevam wrote:
> On Thu, Apr 30, 2015 at 2:45 PM, Sebastian Hesselbarth
> <sebastian.hesselbarth@gmail.com> wrote:
> 
> >          * property silabs,pll-source : <num src>, [<..>]
> >          * allow to selectively set pll source
> > @@ -1328,8 +1321,17 @@ static int si5351_i2c_probe(struct i2c_client *client,
> >         i2c_set_clientdata(client, drvdata);
> >         drvdata->client = client;
> >         drvdata->variant = variant;
> > -       drvdata->pxtal = pdata->clk_xtal;
> > -       drvdata->pclkin = pdata->clk_clkin;
> > +       drvdata->pxtal = devm_clk_get(&client->dev, "xtal");
> > +       drvdata->pclkin = devm_clk_get(&client->dev, "clkin");
> > +
> > +       if (PTR_ERR(drvdata->pxtal) == -EPROBE_DEFER ||
> > +           PTR_ERR(drvdata->pclkin) == -EPROBE_DEFER)
> > +               return -EPROBE_DEFER;
> > +
> > +       if (IS_ERR(drvdata->pxtal) && IS_ERR(drvdata->pclkin)) {
> 
> Don't you want || instead?

I doubt it. He is checking if both are not available.

The driver could work with only one of them.

If you use || then you assume to need both.

WARNING: multiple messages have this Message-ID (diff)
From: mwelling@ieee.org (Michael Welling)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/4] clk: si5351: Do not pass struct clk in platform_data
Date: Thu, 30 Apr 2015 13:30:43 -0500	[thread overview]
Message-ID: <20150430183043.GA21890@deathray> (raw)
In-Reply-To: <CAOMZO5BYnE2epGrWbnNnaqEt1r6+xoPYWKtjc8w-Ze22aitgXA@mail.gmail.com>

On Thu, Apr 30, 2015 at 03:20:38PM -0300, Fabio Estevam wrote:
> On Thu, Apr 30, 2015 at 2:45 PM, Sebastian Hesselbarth
> <sebastian.hesselbarth@gmail.com> wrote:
> 
> >          * property silabs,pll-source : <num src>, [<..>]
> >          * allow to selectively set pll source
> > @@ -1328,8 +1321,17 @@ static int si5351_i2c_probe(struct i2c_client *client,
> >         i2c_set_clientdata(client, drvdata);
> >         drvdata->client = client;
> >         drvdata->variant = variant;
> > -       drvdata->pxtal = pdata->clk_xtal;
> > -       drvdata->pclkin = pdata->clk_clkin;
> > +       drvdata->pxtal = devm_clk_get(&client->dev, "xtal");
> > +       drvdata->pclkin = devm_clk_get(&client->dev, "clkin");
> > +
> > +       if (PTR_ERR(drvdata->pxtal) == -EPROBE_DEFER ||
> > +           PTR_ERR(drvdata->pclkin) == -EPROBE_DEFER)
> > +               return -EPROBE_DEFER;
> > +
> > +       if (IS_ERR(drvdata->pxtal) && IS_ERR(drvdata->pclkin)) {
> 
> Don't you want || instead?

I doubt it. He is checking if both are not available.

The driver could work with only one of them.

If you use || then you assume to need both.

  reply	other threads:[~2015-04-30 18:30 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-30 17:45 [PATCH 0/4] clk: si5351: Some fixes Sebastian Hesselbarth
2015-04-30 17:45 ` Sebastian Hesselbarth
2015-04-30 17:45 ` Sebastian Hesselbarth
2015-04-30 17:45 ` [PATCH 1/4] clk: si5351: Mention clock-names in the binding documentation Sebastian Hesselbarth
2015-04-30 17:45   ` Sebastian Hesselbarth
2015-04-30 17:45 ` [PATCH 2/4] ARM: dove: Add clock-names to CuBox Si5351 clk generator Sebastian Hesselbarth
2015-04-30 17:45   ` Sebastian Hesselbarth
2015-04-30 17:45 ` [PATCH 3/4] clk: si5351: Do not pass struct clk in platform_data Sebastian Hesselbarth
2015-04-30 17:45   ` Sebastian Hesselbarth
2015-04-30 18:20   ` Fabio Estevam
2015-04-30 18:20     ` Fabio Estevam
2015-04-30 18:30     ` Michael Welling [this message]
2015-04-30 18:30       ` Michael Welling
2015-04-30 18:44       ` Sebastian Hesselbarth
2015-04-30 18:44         ` Sebastian Hesselbarth
2015-04-30 19:16         ` Fabio Estevam
2015-04-30 19:16           ` Fabio Estevam
2015-04-30 20:46           ` Sebastian Hesselbarth
2015-04-30 20:46             ` Sebastian Hesselbarth
2015-04-30 17:45 ` [PATCH 4/4] clk: si5351: Reset PLL after rate change Sebastian Hesselbarth
2015-04-30 17:45   ` Sebastian Hesselbarth
2015-04-30 18:49   ` Michael Welling
2015-04-30 18:49     ` Michael Welling
2015-04-30 18:58     ` Sebastian Hesselbarth
2015-04-30 18:58       ` Sebastian Hesselbarth
2015-04-30 18:47 ` [PATCH 0/4] clk: si5351: Some fixes Michael Welling
2015-04-30 18:47   ` Michael Welling
2015-04-30 19:33 ` Michael Welling
2015-04-30 19:33   ` Michael Welling
2015-04-30 19:33   ` Michael Welling
2015-04-30 20:44   ` Sebastian Hesselbarth
2015-04-30 20:44     ` Sebastian Hesselbarth
2015-04-30 20:44     ` Sebastian Hesselbarth
2015-04-30 21:20     ` Michael Welling
2015-04-30 21:20       ` Michael Welling
2015-04-30 21:20       ` Michael Welling
2015-04-30 22:21       ` Sebastian Hesselbarth
2015-04-30 22:21         ` Sebastian Hesselbarth
2015-04-30 22:21         ` Sebastian Hesselbarth
2015-04-30 22:36         ` Michael Welling
2015-04-30 22:36           ` Michael Welling
2015-04-30 22:36           ` Michael Welling
2015-05-01  8:17           ` Sebastian Hesselbarth
2015-05-01  8:17             ` Sebastian Hesselbarth
2015-05-01  8:17             ` Sebastian Hesselbarth
2015-05-08  0:52             ` Michael Welling
2015-05-08  0:52               ` Michael Welling
2015-05-01  9:14 ` Jean-Francois Moine
2015-05-01  9:14   ` Jean-Francois Moine
2015-05-01  9:14   ` Jean-Francois Moine
2015-05-01  9:14   ` Jean-Francois Moine
2015-05-01  9:30   ` Sebastian Hesselbarth
2015-05-01  9:30     ` Sebastian Hesselbarth
2015-05-02  8:53     ` Jean-Francois Moine
2015-05-02  8:55     ` Jean-Francois Moine
2015-05-02  8:55       ` Jean-Francois Moine
2015-05-02  8:55       ` Jean-Francois Moine

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=20150430183043.GA21890@deathray \
    --to=mwelling@ieee.org \
    --cc=festevam@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=moinejf@free.fr \
    --cc=mturquette@linaro.org \
    --cc=rmk+linux@arm.linux.org.uk \
    --cc=sboyd@codeaurora.org \
    --cc=sebastian.hesselbarth@gmail.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.