From: Philipp Zabel <p.zabel@pengutronix.de>
To: Thierry Reding <thierry.reding@gmail.com>
Cc: Timo Alho <talho@nvidia.com>,
linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/4] reset: tegra: check BPMP response return code
Date: Tue, 17 Oct 2017 12:52:17 +0200 [thread overview]
Message-ID: <1508237537.6854.8.camel@pengutronix.de> (raw)
In-Reply-To: <20171017104043.GB30589@ulmo>
Hi Thierry,
On Tue, 2017-10-17 at 12:40 +0200, Thierry Reding wrote:
> On Thu, Sep 07, 2017 at 12:31:03PM +0300, Timo Alho wrote:
> > Add checks for return code in BPMP response message.
> >
> > Signed-off-by: Timo Alho <talho@nvidia.com>
> > ---
> > drivers/reset/tegra/reset-bpmp.c | 9 ++++++++-
> > 1 file changed, 8 insertions(+), 1 deletion(-)
>
> Hi Philipp,
>
> Would you provide an Acked-by on this so that I can take it into the
> Tegra tree? There's a build dependency on patch 1/4 in the series.
Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
to take this via the Tegra tree.
> Quoting in full since you were not previously on Cc, unfortunately.
>
> Timo, please remember to always Cc the relevant maintainers.
>
> Thierry
>
> > diff --git a/drivers/reset/tegra/reset-bpmp.c b/drivers/reset/tegra/reset-bpmp.c
> > index 5daf2ee..fac2db6 100644
> > --- a/drivers/reset/tegra/reset-bpmp.c
> > +++ b/drivers/reset/tegra/reset-bpmp.c
> > @@ -23,6 +23,7 @@ static int tegra_bpmp_reset_common(struct reset_controller_dev *rstc,
> > struct tegra_bpmp *bpmp = to_tegra_bpmp(rstc);
> > struct mrq_reset_request request;
> > struct tegra_bpmp_message msg;
> > + int err;
> >
> > memset(&request, 0, sizeof(request));
> > request.cmd = command;
> > @@ -33,7 +34,13 @@ static int tegra_bpmp_reset_common(struct reset_controller_dev *rstc,
> > msg.tx.data = &request;
> > msg.tx.size = sizeof(request);
> >
> > - return tegra_bpmp_transfer(bpmp, &msg);
> > + err = tegra_bpmp_transfer(bpmp, &msg);
> > + if (err < 0)
> > + return err;
> > + else if (msg.rx.ret < 0)
> > + return -EINVAL;
I don't really understand why you complicate the call sites like this
instead of just letting tegra_bmp_transfer return -EINVAL if msg.rx.ret
< 0, but I haven't seen the other patches.
regards
Philipp
next prev parent reply other threads:[~2017-10-17 10:52 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-07 9:31 [PATCH 0/4] firmware: tegra: add checks for BPMP error " Timo Alho
2017-09-07 9:31 ` [PATCH 1/4] firmware: tegra: propagate error code to caller Timo Alho
2017-09-21 11:19 ` Jon Hunter
2017-10-17 10:41 ` Thierry Reding
2017-09-07 9:31 ` [PATCH 2/4] clk: tegra: check BPMP response return code Timo Alho
2017-09-21 11:21 ` Jon Hunter
2017-09-29 13:46 ` Timo Alho
2017-09-29 14:53 ` Jon Hunter
2017-10-02 8:43 ` Timo Alho
2017-10-02 20:23 ` Jon Hunter
2017-10-17 10:37 ` Thierry Reding
2017-10-21 14:10 ` Stephen Boyd
2017-09-07 9:31 ` [PATCH 3/4] reset: " Timo Alho
2017-10-02 20:24 ` Jon Hunter
2017-10-17 10:40 ` Thierry Reding
2017-10-17 10:52 ` Philipp Zabel [this message]
2017-10-17 11:49 ` Thierry Reding
2017-09-07 9:31 ` [PATCH 4/4] soc/tegra: bpmp: " Timo Alho
2017-10-02 20:26 ` Jon Hunter
2017-10-17 10:41 ` Thierry Reding
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=1508237537.6854.8.camel@pengutronix.de \
--to=p.zabel@pengutronix.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=talho@nvidia.com \
--cc=thierry.reding@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome