From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Hans Verkuil <hverkuil@xs4all.nl>
Cc: linux-media@vger.kernel.org,
Guennadi Liakhovetski <g.liakhovetski@gmx.de>,
Mike Isely <isely@isely.net>,
Hans Verkuil <hans.verkuil@cisco.com>
Subject: Re: [REVIEW PATCH 9/9] v4l2: remove parent from v4l2 core.
Date: Mon, 10 Jun 2013 20:51:06 +0200 [thread overview]
Message-ID: <4543607.skPvUKalgT@avalon> (raw)
In-Reply-To: <1370868518-19831-10-git-send-email-hverkuil@xs4all.nl>
Hi Hans,
Thanks for the patch.
On Monday 10 June 2013 14:48:38 Hans Verkuil wrote:
> From: Hans Verkuil <hans.verkuil@cisco.com>
>
> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> drivers/media/v4l2-core/v4l2-dev.c | 34 ++++++++++++++----------------
> drivers/media/v4l2-core/v4l2-ioctl.c | 7 +------
> include/media/v4l2-dev.h | 2 --
> 3 files changed, 16 insertions(+), 27 deletions(-)
>
> diff --git a/drivers/media/v4l2-core/v4l2-dev.c
> b/drivers/media/v4l2-core/v4l2-dev.c index 2f3fac5..61e82f8 100644
> --- a/drivers/media/v4l2-core/v4l2-dev.c
> +++ b/drivers/media/v4l2-core/v4l2-dev.c
> @@ -495,8 +495,8 @@ static const struct file_operations v4l2_fops = {
> };
>
> /**
> - * get_index - assign stream index number based on parent device
> - * @vdev: video_device to assign index number to, vdev->parent should be
> assigned + * get_index - assign stream index number based on v4l2_dev
> + * @vdev: video_device to assign index number to, vdev->v4l2_dev should be
> assigned *
> * Note that when this is called the new device has not yet been registered
> * in the video_device array, but it was able to obtain a minor number. @@
> -514,15 +514,11 @@ static int get_index(struct video_device *vdev) static
> DECLARE_BITMAP(used, VIDEO_NUM_DEVICES);
> int i;
>
> - /* Some drivers do not set the parent. In that case always return 0. */
> - if (vdev->parent == NULL)
> - return 0;
> -
> bitmap_zero(used, VIDEO_NUM_DEVICES);
>
> for (i = 0; i < VIDEO_NUM_DEVICES; i++) {
> if (video_device[i] != NULL &&
> - video_device[i]->parent == vdev->parent) {
> + video_device[i]->v4l2_dev == vdev->v4l2_dev) {
> set_bit(video_device[i]->index, used);
> }
> }
> @@ -776,6 +772,9 @@ int __video_register_device(struct video_device *vdev,
> int type, int nr, /* the release callback MUST be present */
> if (WARN_ON(!vdev->release))
> return -EINVAL;
> + /* the v4l2_dev pointer MUST be present */
> + if (WARN_ON(!vdev->v4l2_dev))
> + return -EINVAL;
>
> /* v4l2_fh support */
> spin_lock_init(&vdev->fh_lock);
> @@ -803,16 +802,13 @@ int __video_register_device(struct video_device *vdev,
> int type, int nr,
>
> vdev->vfl_type = type;
> vdev->cdev = NULL;
> - if (vdev->v4l2_dev) {
> - if (vdev->v4l2_dev->dev)
> - vdev->parent = vdev->v4l2_dev->dev;
> - if (vdev->ctrl_handler == NULL)
> - vdev->ctrl_handler = vdev->v4l2_dev->ctrl_handler;
> - /* If the prio state pointer is NULL, then use the v4l2_device
> - prio state. */
> - if (vdev->prio == NULL)
> - vdev->prio = &vdev->v4l2_dev->prio;
> - }
> +
> + if (vdev->ctrl_handler == NULL)
> + vdev->ctrl_handler = vdev->v4l2_dev->ctrl_handler;
> + /* If the prio state pointer is NULL, then use the v4l2_device
> + prio state. */
> + if (vdev->prio == NULL)
> + vdev->prio = &vdev->v4l2_dev->prio;
>
> /* Part 2: find a free minor, device node number and device index. */
> #ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
> @@ -897,8 +893,8 @@ int __video_register_device(struct video_device *vdev,
> int type, int nr, /* Part 4: register the device with sysfs */
> vdev->dev.class = &video_class;
> vdev->dev.devt = MKDEV(VIDEO_MAJOR, vdev->minor);
> - if (vdev->parent)
> - vdev->dev.parent = vdev->parent;
> + if (vdev->v4l2_dev->dev)
> + vdev->dev.parent = vdev->v4l2_dev->dev;
> dev_set_name(&vdev->dev, "%s%d", name_base, vdev->num);
> ret = device_register(&vdev->dev);
> if (ret < 0) {
> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
> b/drivers/media/v4l2-core/v4l2-ioctl.c index 19e2988..3dcdaa3 100644
> --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> @@ -1845,12 +1845,7 @@ static int v4l_dbg_g_chip_info(const struct
> v4l2_ioctl_ops *ops, p->flags |= V4L2_CHIP_FL_WRITABLE;
> if (ops->vidioc_g_register)
> p->flags |= V4L2_CHIP_FL_READABLE;
> - if (vfd->v4l2_dev)
> - strlcpy(p->name, vfd->v4l2_dev->name, sizeof(p->name));
> - else if (vfd->parent)
> - strlcpy(p->name, vfd->parent->driver->name, sizeof(p->name));
> - else
> - strlcpy(p->name, "bridge", sizeof(p->name));
> + strlcpy(p->name, vfd->v4l2_dev->name, sizeof(p->name));
> if (ops->vidioc_g_chip_info)
> return ops->vidioc_g_chip_info(file, fh, arg);
> if (p->match.addr)
> diff --git a/include/media/v4l2-dev.h b/include/media/v4l2-dev.h
> index b2c3776..4d10e66 100644
> --- a/include/media/v4l2-dev.h
> +++ b/include/media/v4l2-dev.h
> @@ -96,8 +96,6 @@ struct video_device
> struct device dev; /* v4l device */
> struct cdev *cdev; /* character device */
>
> - /* Set either parent or v4l2_dev if your driver uses v4l2_device */
> - struct device *parent; /* device parent */
> struct v4l2_device *v4l2_dev; /* v4l2_device parent */
>
> /* Control handler associated with this device node. May be NULL. */
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2013-06-10 18:51 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-10 12:48 [REVIEW PATCH 0/9] Use v4l2_dev instead of parent Hans Verkuil
2013-06-10 12:48 ` [REVIEW PATCH 1/9] soc_camera: replace vdev->parent by vdev->v4l2_dev Hans Verkuil
2013-06-10 12:48 ` [REVIEW PATCH 2/9] cx23885-417: use v4l2_dev instead of the deprecated parent field Hans Verkuil
2013-06-10 12:48 ` [REVIEW PATCH 3/9] zoran: " Hans Verkuil
2013-06-10 12:48 ` [REVIEW PATCH 4/9] sn9c102: " Hans Verkuil
2013-06-10 12:48 ` [REVIEW PATCH 5/9] saa7164: " Hans Verkuil
2013-06-10 12:48 ` [REVIEW PATCH 6/9] omap24xxcam: " Hans Verkuil
2013-06-11 11:42 ` Sakari Ailus
2013-06-10 12:48 ` [REVIEW PATCH 7/9] pvrusb2: " Hans Verkuil
2013-06-10 12:48 ` [REVIEW PATCH 8/9] f_uvc: " Hans Verkuil
2013-06-10 18:50 ` Laurent Pinchart
2013-06-11 12:13 ` Hans Verkuil
2013-06-11 12:25 ` Laurent Pinchart
2013-06-10 12:48 ` [REVIEW PATCH 9/9] v4l2: remove parent from v4l2 core Hans Verkuil
2013-06-10 18:51 ` Laurent Pinchart [this message]
2013-06-11 11:44 ` Sakari Ailus
2013-06-11 16:53 ` Ezequiel Garcia
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=4543607.skPvUKalgT@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=g.liakhovetski@gmx.de \
--cc=hans.verkuil@cisco.com \
--cc=hverkuil@xs4all.nl \
--cc=isely@isely.net \
--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