From: "Niklas Söderlund" <niklas.soderlund@ragnatech.se>
To: "Paweł Anikiel" <panikiel@google.com>
Cc: kieran.bingham@ideasonboard.com, mchehab@kernel.org,
hverkuil-cisco@xs4all.nl, tharvey@gateworks.com,
prabhakar.csengg@gmail.com, charles-antoine.couret@nexvision.fr,
thierry.reding@gmail.com, jonathanh@nvidia.com,
skomatineni@nvidia.com, luca.ceresoli@bootlin.com,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
chromeos-krk-upstreaming@google.com
Subject: Re: [PATCH 13/16] media: rcar-vin: Use pad variant of dv timing subdev calls
Date: Sat, 6 Apr 2024 16:03:37 +0200 [thread overview]
Message-ID: <20240406140337.GB2024639@ragnatech.se> (raw)
In-Reply-To: <20240405141411.1807189-14-panikiel@google.com>
Hi Paweł,
Thanks for your work.
On 2024-04-05 14:14:08 +0000, Paweł Anikiel wrote:
> Use the pad variant for all (s|g|query)_dv_timings subdev calls, which
> includes a pad argument.
>
> Signed-off-by: Paweł Anikiel <panikiel@google.com>
Tested-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
> ---
> drivers/media/platform/renesas/rcar-vin/rcar-v4l2.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/media/platform/renesas/rcar-vin/rcar-v4l2.c b/drivers/media/platform/renesas/rcar-vin/rcar-v4l2.c
> index 073f70c6ac68..bb4b07bed28d 100644
> --- a/drivers/media/platform/renesas/rcar-vin/rcar-v4l2.c
> +++ b/drivers/media/platform/renesas/rcar-vin/rcar-v4l2.c
> @@ -730,7 +730,8 @@ static int rvin_s_dv_timings(struct file *file, void *priv_fh,
> struct v4l2_subdev *sd = vin_to_source(vin);
> int ret;
>
> - ret = v4l2_subdev_call(sd, video, s_dv_timings, timings);
> + ret = v4l2_subdev_call(sd, pad, s_dv_timings,
> + vin->parallel.sink_pad, timings);
> if (ret)
> return ret;
>
> @@ -744,7 +745,8 @@ static int rvin_g_dv_timings(struct file *file, void *priv_fh,
> struct rvin_dev *vin = video_drvdata(file);
> struct v4l2_subdev *sd = vin_to_source(vin);
>
> - return v4l2_subdev_call(sd, video, g_dv_timings, timings);
> + return v4l2_subdev_call(sd, pad, g_dv_timings,
> + vin->parallel.sink_pad, timings);
> }
>
> static int rvin_query_dv_timings(struct file *file, void *priv_fh,
> @@ -753,7 +755,8 @@ static int rvin_query_dv_timings(struct file *file, void *priv_fh,
> struct rvin_dev *vin = video_drvdata(file);
> struct v4l2_subdev *sd = vin_to_source(vin);
>
> - return v4l2_subdev_call(sd, video, query_dv_timings, timings);
> + return v4l2_subdev_call(sd, pad, query_dv_timings,
> + vin->parallel.sink_pad, timings);
> }
>
> static int rvin_dv_timings_cap(struct file *file, void *priv_fh,
> --
> 2.44.0.478.gd926399ef9-goog
>
--
Kind Regards,
Niklas Söderlund
next prev parent reply other threads:[~2024-04-06 14:03 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-05 14:13 [PATCH 00/16] Switch subdev dv timing callbacks to pad ops Paweł Anikiel
2024-04-05 14:13 ` [PATCH 01/16] media: v4l2-subdev: Add pad versions of dv timing subdev calls Paweł Anikiel
2024-04-05 14:13 ` [PATCH 02/16] media: i2c: adv748x: Switch dv timing callbacks to pad ops Paweł Anikiel
2024-04-06 14:04 ` Niklas Söderlund
2024-04-05 14:13 ` [PATCH 03/16] media: i2c: adv7511: " Paweł Anikiel
2024-04-05 14:13 ` [PATCH 04/16] media: i2c: adv7604: " Paweł Anikiel
2024-04-05 14:14 ` [PATCH 05/16] media: i2c: adv7842: " Paweł Anikiel
2024-04-05 14:14 ` [PATCH 06/16] media: i2c: tc358743: " Paweł Anikiel
2024-04-05 14:14 ` [PATCH 07/16] media: i2c: tda1997x: " Paweł Anikiel
2024-04-05 14:14 ` [PATCH 08/16] media: i2c: ths7303: " Paweł Anikiel
2024-04-05 14:14 ` [PATCH 09/16] media: i2c: ths8200: " Paweł Anikiel
2024-04-05 14:14 ` [PATCH 10/16] media: i2c: tvp7002: " Paweł Anikiel
2024-04-05 14:14 ` [PATCH 11/16] media: spi: gs1662: " Paweł Anikiel
2024-04-05 14:14 ` [PATCH 12/16] media: cobalt: Use pad variant of dv timing subdev calls Paweł Anikiel
2024-04-05 14:14 ` [PATCH 13/16] media: rcar-vin: " Paweł Anikiel
2024-04-06 14:03 ` Niklas Söderlund [this message]
2024-04-05 14:14 ` [PATCH 14/16] media: vpif_capture: " Paweł Anikiel
2024-04-05 14:14 ` [PATCH 15/16] media: tegra-video: " Paweł Anikiel
2024-04-05 14:14 ` [PATCH 16/16] media: v4l2-subdev: Remove non-pad dv timing callbacks Paweł Anikiel
2024-04-08 14:15 ` [PATCH 00/16] Switch subdev dv timing callbacks to pad ops Hans Verkuil
2024-04-08 14:17 ` Hans Verkuil
2024-04-08 15:25 ` Paweł Anikiel
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=20240406140337.GB2024639@ragnatech.se \
--to=niklas.soderlund@ragnatech.se \
--cc=charles-antoine.couret@nexvision.fr \
--cc=chromeos-krk-upstreaming@google.com \
--cc=hverkuil-cisco@xs4all.nl \
--cc=jonathanh@nvidia.com \
--cc=kieran.bingham@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=luca.ceresoli@bootlin.com \
--cc=mchehab@kernel.org \
--cc=panikiel@google.com \
--cc=prabhakar.csengg@gmail.com \
--cc=skomatineni@nvidia.com \
--cc=tharvey@gateworks.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