Hi Laurent,

On Mon, Jun 02, 2014 at 05:10:02PM +0200, Laurent Pinchart wrote:
> Expose the pad-level get caps, query, get and set DV timings ioctls.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com>
> ---
>  utils/media-ctl/libv4l2subdev.c | 72 
> +++++++++++++++++++++++++++++++++++++++++
>  utils/media-ctl/v4l2subdev.h    | 53 ++++++++++++++++++++++++++++++
>  2 files changed, 125 insertions(+)
> 
> diff --git a/utils/media-ctl/libv4l2subdev.c b/utils/media-ctl/libv4l2subdev.c
> index 14daffa..8015330 100644
> --- a/utils/media-ctl/libv4l2subdev.c
> +++ b/utils/media-ctl/libv4l2subdev.c
> @@ -189,6 +189,78 @@ int v4l2_subdev_set_selection(struct media_entity 
> *entity,
>       return 0;
>  }
>  
> +int v4l2_subdev_get_dv_timings_caps(struct media_entity *entity,
> +     struct v4l2_dv_timings_cap *caps)
> +{
> +     unsigned int pad = caps->pad;
> +     int ret;
> +
> +     ret = v4l2_subdev_open(entity);
> +     if (ret < 0)
> +             return ret;

In every function v4l2_subdev_open() is called before the ioctl command. How
about implementing a wrapper which does both, and using that before this
patch?

-- 
Kind regards,

Sakari Ailus
e-mail: sakari.ai...@iki.fi     XMPP: sai...@retiisi.org.uk
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to