public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
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: [PATCH 3/5] vivid: set device_caps in video_device.
Date: Mon, 29 Feb 2016 13:59:17 +0200	[thread overview]
Message-ID: <1680460.3rPA81enpL@avalon> (raw)
In-Reply-To: <1456746345-1431-4-git-send-email-hverkuil@xs4all.nl>

Hi Hans,

Thank you for the patch.

On Monday 29 February 2016 12:45:43 Hans Verkuil wrote:
> From: Hans Verkuil <hans.verkuil@cisco.com>
> 
> This simplifies the querycap function.
> 
> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>

Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
> #
> #WARNING: line over 80 characters
> ##48: FILE: include/media/v4l2-common.h:194:
> #+ * is_media_entity_v4l2_io() - Check if the entity is a video_device and
> can do I/O #
> #total: 0 errors, 1 warnings, 64 lines checked
> #
> #Your patch has style problems, please review.
> #
> #NOTE: If any of the errors are false positives, please report
> #      them to the maintainer, see CHECKPATCH in MAINTAINERS.
> ---
>  drivers/media/platform/vivid/vivid-core.c | 22 +++++++---------------
>  1 file changed, 7 insertions(+), 15 deletions(-)
> 
> diff --git a/drivers/media/platform/vivid/vivid-core.c
> b/drivers/media/platform/vivid/vivid-core.c index ec125bec..c14da84 100644
> --- a/drivers/media/platform/vivid/vivid-core.c
> +++ b/drivers/media/platform/vivid/vivid-core.c
> @@ -200,27 +200,12 @@ static int vidioc_querycap(struct file *file, void 
> *priv, struct v4l2_capability *cap)
>  {
>  	struct vivid_dev *dev = video_drvdata(file);
> -	struct video_device *vdev = video_devdata(file);
> 
>  	strcpy(cap->driver, "vivid");
>  	strcpy(cap->card, "vivid");
>  	snprintf(cap->bus_info, sizeof(cap->bus_info),
>  			"platform:%s", dev->v4l2_dev.name);
> 
> -	if (vdev->vfl_type == VFL_TYPE_GRABBER && vdev->vfl_dir == VFL_DIR_RX)
> -		cap->device_caps = dev->vid_cap_caps;
> -	if (vdev->vfl_type == VFL_TYPE_GRABBER && vdev->vfl_dir == VFL_DIR_TX)
> -		cap->device_caps = dev->vid_out_caps;
> -	else if (vdev->vfl_type == VFL_TYPE_VBI && vdev->vfl_dir == VFL_DIR_RX)
> -		cap->device_caps = dev->vbi_cap_caps;
> -	else if (vdev->vfl_type == VFL_TYPE_VBI && vdev->vfl_dir == VFL_DIR_TX)
> -		cap->device_caps = dev->vbi_out_caps;
> -	else if (vdev->vfl_type == VFL_TYPE_SDR)
> -		cap->device_caps = dev->sdr_cap_caps;
> -	else if (vdev->vfl_type == VFL_TYPE_RADIO && vdev->vfl_dir == VFL_DIR_RX)
> -		cap->device_caps = dev->radio_rx_caps;
> -	else if (vdev->vfl_type == VFL_TYPE_RADIO && vdev->vfl_dir == VFL_DIR_TX)
> -		cap->device_caps = dev->radio_tx_caps;
>  	cap->capabilities = dev->vid_cap_caps | dev->vid_out_caps |
>  		dev->vbi_cap_caps | dev->vbi_out_caps |
>  		dev->radio_rx_caps | dev->radio_tx_caps |
> @@ -1135,6 +1120,7 @@ static int vivid_create_instance(struct
> platform_device *pdev, int inst) strlcpy(vfd->name, "vivid-vid-cap",
> sizeof(vfd->name));
>  		vfd->fops = &vivid_fops;
>  		vfd->ioctl_ops = &vivid_ioctl_ops;
> +		vfd->device_caps = dev->vid_cap_caps;
>  		vfd->release = video_device_release_empty;
>  		vfd->v4l2_dev = &dev->v4l2_dev;
>  		vfd->queue = &dev->vb_vid_cap_q;
> @@ -1160,6 +1146,7 @@ static int vivid_create_instance(struct
> platform_device *pdev, int inst) vfd->vfl_dir = VFL_DIR_TX;
>  		vfd->fops = &vivid_fops;
>  		vfd->ioctl_ops = &vivid_ioctl_ops;
> +		vfd->device_caps = dev->vid_out_caps;
>  		vfd->release = video_device_release_empty;
>  		vfd->v4l2_dev = &dev->v4l2_dev;
>  		vfd->queue = &dev->vb_vid_out_q;
> @@ -1184,6 +1171,7 @@ static int vivid_create_instance(struct
> platform_device *pdev, int inst) strlcpy(vfd->name, "vivid-vbi-cap",
> sizeof(vfd->name));
>  		vfd->fops = &vivid_fops;
>  		vfd->ioctl_ops = &vivid_ioctl_ops;
> +		vfd->device_caps = dev->vbi_cap_caps;
>  		vfd->release = video_device_release_empty;
>  		vfd->v4l2_dev = &dev->v4l2_dev;
>  		vfd->queue = &dev->vb_vbi_cap_q;
> @@ -1207,6 +1195,7 @@ static int vivid_create_instance(struct
> platform_device *pdev, int inst) vfd->vfl_dir = VFL_DIR_TX;
>  		vfd->fops = &vivid_fops;
>  		vfd->ioctl_ops = &vivid_ioctl_ops;
> +		vfd->device_caps = dev->vbi_out_caps;
>  		vfd->release = video_device_release_empty;
>  		vfd->v4l2_dev = &dev->v4l2_dev;
>  		vfd->queue = &dev->vb_vbi_out_q;
> @@ -1229,6 +1218,7 @@ static int vivid_create_instance(struct
> platform_device *pdev, int inst) strlcpy(vfd->name, "vivid-sdr-cap",
> sizeof(vfd->name));
>  		vfd->fops = &vivid_fops;
>  		vfd->ioctl_ops = &vivid_ioctl_ops;
> +		vfd->device_caps = dev->sdr_cap_caps;
>  		vfd->release = video_device_release_empty;
>  		vfd->v4l2_dev = &dev->v4l2_dev;
>  		vfd->queue = &dev->vb_sdr_cap_q;
> @@ -1247,6 +1237,7 @@ static int vivid_create_instance(struct
> platform_device *pdev, int inst) strlcpy(vfd->name, "vivid-rad-rx",
> sizeof(vfd->name));
>  		vfd->fops = &vivid_radio_fops;
>  		vfd->ioctl_ops = &vivid_ioctl_ops;
> +		vfd->device_caps = dev->radio_rx_caps;
>  		vfd->release = video_device_release_empty;
>  		vfd->v4l2_dev = &dev->v4l2_dev;
>  		vfd->lock = &dev->mutex;
> @@ -1265,6 +1256,7 @@ static int vivid_create_instance(struct
> platform_device *pdev, int inst) vfd->vfl_dir = VFL_DIR_TX;
>  		vfd->fops = &vivid_radio_fops;
>  		vfd->ioctl_ops = &vivid_ioctl_ops;
> +		vfd->device_caps = dev->radio_tx_caps;
>  		vfd->release = video_device_release_empty;
>  		vfd->v4l2_dev = &dev->v4l2_dev;
>  		vfd->lock = &dev->mutex;

-- 
Regards,

Laurent Pinchart


  reply	other threads:[~2016-02-29 11:59 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-29 11:45 [PATCH 0/5] media: better type handling Hans Verkuil
2016-02-29 11:45 ` [PATCH 1/5] v4l2: add device_caps to struct video_device Hans Verkuil
2016-02-29 11:56   ` Laurent Pinchart
2016-02-29 11:56     ` Laurent Pinchart
2016-03-01 14:16   ` Laurent Pinchart
2016-02-29 11:45 ` [PATCH 2/5] v4l2-pci-skeleton.c: fill in device_caps in video_device Hans Verkuil
2016-02-29 11:57   ` Laurent Pinchart
2016-02-29 11:45 ` [PATCH 3/5] vivid: set " Hans Verkuil
2016-02-29 11:59   ` Laurent Pinchart [this message]
2016-02-29 11:45 ` [PATCH 4/5] media: Add type field to struct media_entity Hans Verkuil
2016-02-29 11:45 ` [PATCH 5/5] media-entity.h: rename _io to _video_device and add real _io Hans Verkuil
2016-02-29 12:23   ` Laurent Pinchart
2016-02-29 12:26     ` 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=1680460.3rPA81enpL@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