From: Fabien DESSENNE <fabien.dessenne@st.com>
To: Jassi Brar <jassisinghbrar@gmail.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: Benjamin Gaignard <benjamin.gaignard@linaro.org>,
Loic PALLARDY <loic.pallardy@st.com>,
Arnaud POULIQUEN <arnaud.pouliquen@st.com>,
"Ludovic BARRE" <ludovic.barre@st.com>
Subject: Re: mailbox: return error in mbox_request_channel_byname
Date: Thu, 1 Mar 2018 13:51:10 +0000 [thread overview]
Message-ID: <58e2326d-e940-bae5-99e3-5b316caac297@st.com> (raw)
In-Reply-To: <1519899374-21297-1-git-send-email-fabien.dessenne@st.com>
oops! you can forget this patch, the original implementation is correct
BR
Fabien
On 01/03/18 11:16, Fabien DESSENNE wrote:
> If 'name' is not found in the "mbox-names" list, return an error
>
> Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com>
> ---
> drivers/mailbox/mailbox.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/mailbox/mailbox.c b/drivers/mailbox/mailbox.c
> index 674b35f..a31970a 100644
> --- a/drivers/mailbox/mailbox.c
> +++ b/drivers/mailbox/mailbox.c
> @@ -391,11 +391,12 @@ struct mbox_chan *mbox_request_channel_byname(struct mbox_client *cl,
>
> of_property_for_each_string(np, "mbox-names", prop, mbox_name) {
> if (!strncmp(name, mbox_name, strlen(name)))
> - break;
> + return mbox_request_channel(cl, index);
> index++;
> }
>
> - return mbox_request_channel(cl, index);
> + dev_err(cl->dev, "%s() mbox %s not found\n", __func__, name);
> + return ERR_PTR(-EINVAL);
> }
> EXPORT_SYMBOL_GPL(mbox_request_channel_byname);
>
prev parent reply other threads:[~2018-03-01 13:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-01 10:16 [PATCH] " Fabien Dessenne
2018-03-01 13:51 ` Fabien DESSENNE [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=58e2326d-e940-bae5-99e3-5b316caac297@st.com \
--to=fabien.dessenne@st.com \
--cc=arnaud.pouliquen@st.com \
--cc=benjamin.gaignard@linaro.org \
--cc=jassisinghbrar@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=loic.pallardy@st.com \
--cc=ludovic.barre@st.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
all inboxes | Powered by JetHome®