public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Alexander Stein <alexander.stein@ew.tq-group.com>
To: Ming Qian <ming.qian@nxp.com>, Shijie Qin <shijie.qin@nxp.com>,
	Zhou Peng <eagle.zhou@nxp.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
Subject: Re: [PATCH 1/1] media: amphion: use dev_err_probe
Date: Wed, 15 Mar 2023 07:50:25 +0100	[thread overview]
Message-ID: <4055673.mvXUDI8C0e@steina-w> (raw)
In-Reply-To: <20230131103244.624698-1-alexander.stein@ew.tq-group.com>

Hi,

Am Dienstag, 31. Januar 2023, 11:32:44 CET schrieb Alexander Stein:
> This simplifies the code and silences -517 error messages. Also
> the reason is listed in /sys/kernel/debug/devices_deferred.
> 
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>

is there any feedback on this?

Thanks and best regards,
Alexander

> ---
>  drivers/media/platform/amphion/vpu_mbox.c | 9 ++++-----
>  1 file changed, 4 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/media/platform/amphion/vpu_mbox.c
> b/drivers/media/platform/amphion/vpu_mbox.c index
> bf759eb2fd46..b6d5b4844f67 100644
> --- a/drivers/media/platform/amphion/vpu_mbox.c
> +++ b/drivers/media/platform/amphion/vpu_mbox.c
> @@ -46,11 +46,10 @@ static int vpu_mbox_request_channel(struct device *dev,
> struct vpu_mbox *mbox) cl->rx_callback = vpu_mbox_rx_callback;
> 
>  	ch = mbox_request_channel_byname(cl, mbox->name);
> -	if (IS_ERR(ch)) {
> -		dev_err(dev, "Failed to request mbox chan %s, ret : 
%ld\n",
> -			mbox->name, PTR_ERR(ch));
> -		return PTR_ERR(ch);
> -	}
> +	if (IS_ERR(ch))
> +		return dev_err_probe(dev, PTR_ERR(ch),
> +				     "Failed to request mbox chan 
%s\n",
> +				     mbox->name);
> 
>  	mbox->ch = ch;
>  	return 0;


-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



  reply	other threads:[~2023-03-15  6:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-31 10:32 [PATCH 1/1] media: amphion: use dev_err_probe Alexander Stein
2023-03-15  6:50 ` Alexander Stein [this message]
2023-03-17  8:52   ` [EXT] " Ming Qian
2023-05-31  7:24     ` Alexander Stein

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=4055673.mvXUDI8C0e@steina-w \
    --to=alexander.stein@ew.tq-group.com \
    --cc=eagle.zhou@nxp.com \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=ming.qian@nxp.com \
    --cc=shijie.qin@nxp.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