From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Jacopo Mondi <jacopo.mondi+renesas@ideasonboard.com>
Cc: "Kieran Bingham" <kieran.bingham+renesas@ideasonboard.com>,
"Niklas Söderlund" <niklas.soderlund@ragnatech.se>,
linux-kernel@vger.kernel.org, linux-media@vger.kernel.org,
linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH v5 4/7] media: vsp1: wpf: Propagate vsp1_rwpf_init_ctrls()
Date: Fri, 21 Mar 2025 13:59:11 +0200 [thread overview]
Message-ID: <20250321115911.GA1752@pendragon.ideasonboard.com> (raw)
In-Reply-To: <20250319-v4h-iif-v5-4-0a10456d792c@ideasonboard.com>
Hi Jacopo,
Thank you for the patch.
On Wed, Mar 19, 2025 at 12:28:17PM +0100, Jacopo Mondi wrote:
> vsp1_wpf.c calls vsp1_rwpf_init_ctrls() to initialize controls that
> are common between RPF and WPF.
>
> However, the vsp1_wpf.c implementation does not check for the function
> call return value. Fix this by propagating to the caller the return
> value.
>
> While at it, drop a duplicated error message in wpf_init_controls() as
> the caller already report it.
>
> Signed-off-by: Jacopo Mondi <jacopo.mondi+renesas@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>
> ---
> v2->v3:
> - New patch
> ---
> drivers/media/platform/renesas/vsp1/vsp1_wpf.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/media/platform/renesas/vsp1/vsp1_wpf.c b/drivers/media/platform/renesas/vsp1/vsp1_wpf.c
> index f176750ccd9847fdb8d51f7f51a6bd5092b70197..da651a882bbb7e4d58f2dfea9dcea60a41f4f79c 100644
> --- a/drivers/media/platform/renesas/vsp1/vsp1_wpf.c
> +++ b/drivers/media/platform/renesas/vsp1/vsp1_wpf.c
> @@ -133,6 +133,7 @@ static int wpf_init_controls(struct vsp1_rwpf *wpf)
> {
> struct vsp1_device *vsp1 = wpf->entity.vsp1;
> unsigned int num_flip_ctrls;
> + int ret;
>
> spin_lock_init(&wpf->flip.lock);
>
> @@ -156,7 +157,9 @@ static int wpf_init_controls(struct vsp1_rwpf *wpf)
> num_flip_ctrls = 0;
> }
>
> - vsp1_rwpf_init_ctrls(wpf, num_flip_ctrls);
> + ret = vsp1_rwpf_init_ctrls(wpf, num_flip_ctrls);
> + if (ret < 0)
> + return ret;
>
> if (num_flip_ctrls >= 1) {
> wpf->flip.ctrls.vflip =
> @@ -174,11 +177,8 @@ static int wpf_init_controls(struct vsp1_rwpf *wpf)
> v4l2_ctrl_cluster(3, &wpf->flip.ctrls.vflip);
> }
>
> - if (wpf->ctrls.error) {
> - dev_err(vsp1->dev, "wpf%u: failed to initialize controls\n",
> - wpf->entity.index);
> + if (wpf->ctrls.error)
> return wpf->ctrls.error;
> - }
>
> return 0;
> }
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2025-03-21 11:59 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-19 11:28 [PATCH v5 0/7] media: renesas: vsp1: Add support for IIF Jacopo Mondi
2025-03-19 11:28 ` [PATCH v5 1/7] media: vsp1: Add support IIF ISP Interface Jacopo Mondi
2025-03-19 11:28 ` [PATCH v5 2/7] media: vsp1: dl: Use singleshot DL for VSPX Jacopo Mondi
2025-03-19 11:28 ` [PATCH v5 3/7] media: vsp1: rwpf: Break out format handling Jacopo Mondi
2025-03-19 11:28 ` [PATCH v5 4/7] media: vsp1: wpf: Propagate vsp1_rwpf_init_ctrls() Jacopo Mondi
2025-03-21 11:59 ` Laurent Pinchart [this message]
2025-03-19 11:28 ` [PATCH v5 5/7] media: vsp1: rwpf: Initialize image formats Jacopo Mondi
2025-03-19 11:28 ` [PATCH v5 6/7] media: vsp1: rwpf: Support operations with IIF Jacopo Mondi
2025-03-21 12:09 ` Laurent Pinchart
2025-03-21 15:52 ` Jacopo Mondi
2025-03-19 11:28 ` [PATCH v5 7/7] media: vsp1: pipe: Add RAW Bayer formats mapping Jacopo Mondi
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=20250321115911.GA1752@pendragon.ideasonboard.com \
--to=laurent.pinchart@ideasonboard.com \
--cc=jacopo.mondi+renesas@ideasonboard.com \
--cc=kieran.bingham+renesas@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=niklas.soderlund@ragnatech.se \
/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