From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Hans Verkuil <hverkuil@xs4all.nl>
Cc: linux-media@vger.kernel.org, Hans Verkuil <hans.verkuil@cisco.com>
Subject: Re: [PATCHv5 10/12] media/i2c: add missing entity functions
Date: Mon, 09 Jul 2018 16:05:30 +0300 [thread overview]
Message-ID: <4671786.nOIRK6uOON@avalon> (raw)
In-Reply-To: <20180629114331.7617-11-hverkuil@xs4all.nl>
Hi Hans,
Thank you for the patch.
On Friday, 29 June 2018 14:43:29 EEST Hans Verkuil wrote:
> From: Hans Verkuil <hans.verkuil@cisco.com>
>
> Several drivers in media/i2c do not set the entity function.
> Correct this.
>
> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
> Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> drivers/media/i2c/et8ek8/et8ek8_driver.c | 1 +
> drivers/media/i2c/mt9m032.c | 1 +
> drivers/media/i2c/mt9p031.c | 1 +
> drivers/media/i2c/mt9t001.c | 1 +
> drivers/media/i2c/mt9v032.c | 1 +
> 5 files changed, 5 insertions(+)
>
> diff --git a/drivers/media/i2c/et8ek8/et8ek8_driver.c
> b/drivers/media/i2c/et8ek8/et8ek8_driver.c index e9eff9039ef5..37ef38947e01
> 100644
> --- a/drivers/media/i2c/et8ek8/et8ek8_driver.c
> +++ b/drivers/media/i2c/et8ek8/et8ek8_driver.c
> @@ -1446,6 +1446,7 @@ static int et8ek8_probe(struct i2c_client *client,
> sensor->subdev.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
> sensor->subdev.internal_ops = &et8ek8_internal_ops;
>
> + sensor->subdev.entity.function = MEDIA_ENT_F_CAM_SENSOR;
> sensor->pad.flags = MEDIA_PAD_FL_SOURCE;
> ret = media_entity_pads_init(&sensor->subdev.entity, 1, &sensor->pad);
> if (ret < 0) {
> diff --git a/drivers/media/i2c/mt9m032.c b/drivers/media/i2c/mt9m032.c
> index 6a9e068462fd..b385f2b632ad 100644
> --- a/drivers/media/i2c/mt9m032.c
> +++ b/drivers/media/i2c/mt9m032.c
> @@ -793,6 +793,7 @@ static int mt9m032_probe(struct i2c_client *client,
> v4l2_ctrl_cluster(2, &sensor->hflip);
>
> sensor->subdev.ctrl_handler = &sensor->ctrls;
> + sensor->subdev.entity.function = MEDIA_ENT_F_CAM_SENSOR;
> sensor->pad.flags = MEDIA_PAD_FL_SOURCE;
> ret = media_entity_pads_init(&sensor->subdev.entity, 1, &sensor->pad);
> if (ret < 0)
> diff --git a/drivers/media/i2c/mt9p031.c b/drivers/media/i2c/mt9p031.c
> index 91d822fc4443..715be3632b01 100644
> --- a/drivers/media/i2c/mt9p031.c
> +++ b/drivers/media/i2c/mt9p031.c
> @@ -1111,6 +1111,7 @@ static int mt9p031_probe(struct i2c_client *client,
> v4l2_i2c_subdev_init(&mt9p031->subdev, client, &mt9p031_subdev_ops);
> mt9p031->subdev.internal_ops = &mt9p031_subdev_internal_ops;
>
> + mt9p031->subdev.entity.function = MEDIA_ENT_F_CAM_SENSOR;
> mt9p031->pad.flags = MEDIA_PAD_FL_SOURCE;
> ret = media_entity_pads_init(&mt9p031->subdev.entity, 1, &mt9p031->pad);
> if (ret < 0)
> diff --git a/drivers/media/i2c/mt9t001.c b/drivers/media/i2c/mt9t001.c
> index 9d981d9f5686..f683d2cb0486 100644
> --- a/drivers/media/i2c/mt9t001.c
> +++ b/drivers/media/i2c/mt9t001.c
> @@ -943,6 +943,7 @@ static int mt9t001_probe(struct i2c_client *client,
> mt9t001->subdev.internal_ops = &mt9t001_subdev_internal_ops;
> mt9t001->subdev.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
>
> + mt9t001->subdev.entity.function = MEDIA_ENT_F_CAM_SENSOR;
> mt9t001->pad.flags = MEDIA_PAD_FL_SOURCE;
> ret = media_entity_pads_init(&mt9t001->subdev.entity, 1, &mt9t001->pad);
>
> diff --git a/drivers/media/i2c/mt9v032.c b/drivers/media/i2c/mt9v032.c
> index 4de63b2df334..f74730d24d8f 100644
> --- a/drivers/media/i2c/mt9v032.c
> +++ b/drivers/media/i2c/mt9v032.c
> @@ -1162,6 +1162,7 @@ static int mt9v032_probe(struct i2c_client *client,
> mt9v032->subdev.internal_ops = &mt9v032_subdev_internal_ops;
> mt9v032->subdev.flags |= V4L2_SUBDEV_FL_HAS_DEVNODE;
>
> + mt9v032->subdev.entity.function = MEDIA_ENT_F_CAM_SENSOR;
> mt9v032->pad.flags = MEDIA_PAD_FL_SOURCE;
> ret = media_entity_pads_init(&mt9v032->subdev.entity, 1, &mt9v032->pad);
> if (ret < 0)
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2018-07-09 13:04 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-29 11:43 [PATCHv5 00/12] media/mc: fix inconsistencies Hans Verkuil
2018-06-29 11:43 ` [PATCHv5 01/12] media: add 'index' to struct media_v2_pad Hans Verkuil
2018-07-09 12:55 ` Laurent Pinchart
2018-07-09 13:40 ` Hans Verkuil
2018-07-11 11:33 ` Laurent Pinchart
2018-07-11 11:45 ` Hans Verkuil
2018-08-03 12:34 ` Sakari Ailus
2018-08-03 14:47 ` Mauro Carvalho Chehab
2018-06-29 11:43 ` [PATCHv5 02/12] media-ioc-g-topology.rst: document new 'index' field Hans Verkuil
2018-07-09 12:57 ` Laurent Pinchart
2018-06-29 11:43 ` [PATCHv5 03/12] media: add flags field to struct media_v2_entity Hans Verkuil
2018-07-09 12:58 ` Laurent Pinchart
2018-06-29 11:43 ` [PATCHv5 04/12] media-ioc-g-topology.rst: document new 'flags' field Hans Verkuil
2018-06-29 11:43 ` [PATCHv5 05/12] media: rename MEDIA_ENT_F_DTV_DECODER to MEDIA_ENT_F_DV_DECODER Hans Verkuil
2018-06-29 17:40 ` Ezequiel Garcia
2018-07-09 13:00 ` Laurent Pinchart
2018-07-09 13:42 ` Hans Verkuil
2018-07-11 11:36 ` Laurent Pinchart
2018-06-29 11:43 ` [PATCHv5 06/12] media.h: add MEDIA_ENT_F_DV_ENCODER Hans Verkuil
2018-07-09 13:02 ` Laurent Pinchart
2018-06-29 11:43 ` [PATCHv5 07/12] media.h: reorder video en/decoder functions Hans Verkuil
2018-07-09 13:02 ` Laurent Pinchart
2018-06-29 11:43 ` [PATCHv5 08/12] ad9389b/adv7511: set proper media entity function Hans Verkuil
2018-07-09 13:04 ` Laurent Pinchart
2018-07-09 13:44 ` Hans Verkuil
2018-06-29 11:43 ` [PATCHv5 09/12] adv7180/tvp514x/tvp7002: fix " Hans Verkuil
2018-07-09 13:04 ` Laurent Pinchart
2018-06-29 11:43 ` [PATCHv5 10/12] media/i2c: add missing entity functions Hans Verkuil
2018-07-09 13:05 ` Laurent Pinchart [this message]
2018-06-29 11:43 ` [PATCHv5 11/12] media-ioc-enum-links.rst: improve pad index description Hans Verkuil
2018-07-09 13:10 ` Laurent Pinchart
2018-07-09 13:47 ` Hans Verkuil
2018-06-29 11:43 ` [PATCHv5 12/12] media-ioc-enum-entities.rst/-g-topology.rst: clarify ID/name usage Hans Verkuil
2018-07-09 13:12 ` Laurent Pinchart
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=4671786.nOIRK6uOON@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=hans.verkuil@cisco.com \
--cc=hverkuil@xs4all.nl \
--cc=linux-media@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).