From: Hans Verkuil <hverkuil@xs4all.nl>
To: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>,
mchehab@osg.samsung.com, linux-media@vger.kernel.org
Cc: linux-sh@vger.kernel.org
Subject: Re: [PATCH 2/3] ml86v7667: implement g_std() method
Date: Fri, 04 Sep 2015 11:35:50 +0000 [thread overview]
Message-ID: <55E98216.3080602@xs4all.nl> (raw)
In-Reply-To: <1725998.gULFgFImHk@wasted.cogentembedded.com>
On 09/04/2015 01:16 AM, Sergei Shtylyov wrote:
> The driver was written with the 'soc_camera' use in mind, however the g_std()
> video method was forgotten. Implement it at last...
>
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
>
> ---
> drivers/media/i2c/ml86v7667.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> Index: media_tree/drivers/media/i2c/ml86v7667.c
> =================================> --- media_tree.orig/drivers/media/i2c/ml86v7667.c
> +++ media_tree/drivers/media/i2c/ml86v7667.c
> @@ -233,6 +233,15 @@ static int ml86v7667_g_mbus_config(struc
> return 0;
> }
>
> +static int ml86v7667_g_std(struct v4l2_subdev *sd, v4l2_std_id *std)
> +{
> + struct ml86v7667_priv *priv = to_ml86v7667(sd);
> +
> + *std = priv->std;
> +
> + return 0;
> +}
> +
> static int ml86v7667_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
> {
> struct ml86v7667_priv *priv = to_ml86v7667(sd);
> @@ -282,6 +291,7 @@ static const struct v4l2_ctrl_ops ml86v7
> };
>
> static struct v4l2_subdev_video_ops ml86v7667_subdev_video_ops = {
> + .g_std = ml86v7667_g_std,
> .s_std = ml86v7667_s_std,
> .querystd = ml86v7667_querystd,
> .g_input_status = ml86v7667_g_input_status,
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
WARNING: multiple messages have this Message-ID (diff)
From: Hans Verkuil <hverkuil@xs4all.nl>
To: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>,
mchehab@osg.samsung.com, linux-media@vger.kernel.org
Cc: linux-sh@vger.kernel.org
Subject: Re: [PATCH 2/3] ml86v7667: implement g_std() method
Date: Fri, 04 Sep 2015 13:35:50 +0200 [thread overview]
Message-ID: <55E98216.3080602@xs4all.nl> (raw)
In-Reply-To: <1725998.gULFgFImHk@wasted.cogentembedded.com>
On 09/04/2015 01:16 AM, Sergei Shtylyov wrote:
> The driver was written with the 'soc_camera' use in mind, however the g_std()
> video method was forgotten. Implement it at last...
>
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
>
> ---
> drivers/media/i2c/ml86v7667.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> Index: media_tree/drivers/media/i2c/ml86v7667.c
> ===================================================================
> --- media_tree.orig/drivers/media/i2c/ml86v7667.c
> +++ media_tree/drivers/media/i2c/ml86v7667.c
> @@ -233,6 +233,15 @@ static int ml86v7667_g_mbus_config(struc
> return 0;
> }
>
> +static int ml86v7667_g_std(struct v4l2_subdev *sd, v4l2_std_id *std)
> +{
> + struct ml86v7667_priv *priv = to_ml86v7667(sd);
> +
> + *std = priv->std;
> +
> + return 0;
> +}
> +
> static int ml86v7667_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
> {
> struct ml86v7667_priv *priv = to_ml86v7667(sd);
> @@ -282,6 +291,7 @@ static const struct v4l2_ctrl_ops ml86v7
> };
>
> static struct v4l2_subdev_video_ops ml86v7667_subdev_video_ops = {
> + .g_std = ml86v7667_g_std,
> .s_std = ml86v7667_s_std,
> .querystd = ml86v7667_querystd,
> .g_input_status = ml86v7667_g_input_status,
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
next prev parent reply other threads:[~2015-09-04 11:35 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-03 23:12 [PATCH 0/3] VIN: call g std() method as requested by Hans Sergei Shtylyov
2015-09-03 23:12 ` Sergei Shtylyov
2015-09-03 23:14 ` [PATCH 1/3] adv7180: implement g_std() method Sergei Shtylyov
2015-09-03 23:14 ` Sergei Shtylyov
2015-09-04 12:08 ` Hans Verkuil
2015-09-04 12:08 ` Hans Verkuil
2015-09-04 12:32 ` Hans Verkuil
2015-09-04 12:32 ` Hans Verkuil
2015-09-03 23:16 ` [PATCH 2/3] ml86v7667: " Sergei Shtylyov
2015-09-03 23:16 ` Sergei Shtylyov
2015-09-04 11:35 ` Hans Verkuil [this message]
2015-09-04 11:35 ` Hans Verkuil
2015-09-03 23:18 ` [PATCH 3/3] rcar_vin: call g_std() instead of querystd() Sergei Shtylyov
2015-09-03 23:18 ` Sergei Shtylyov
2015-09-04 11:36 ` Hans Verkuil
2015-09-04 11:36 ` Hans Verkuil
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=55E98216.3080602@xs4all.nl \
--to=hverkuil@xs4all.nl \
--cc=linux-media@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=mchehab@osg.samsung.com \
--cc=sergei.shtylyov@cogentembedded.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.