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>,
Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Subject: Re: [PATCH 7/7] v4l2: remove g/s_crop and cropcap from video ops
Date: Sun, 12 Apr 2015 16:03:35 +0300 [thread overview]
Message-ID: <5051108.JvQ4aMPQqk@avalon> (raw)
In-Reply-To: <1428574888-46407-8-git-send-email-hverkuil@xs4all.nl>
Hi Hans,
Thank you for the patch.
On Thursday 09 April 2015 12:21:28 Hans Verkuil wrote:
> From: Hans Verkuil <hans.verkuil@cisco.com>
>
> Replace all calls to g/s_crop and cropcap by calls to the
> get/set_selection pad ops.
>
> Remove the old g/s_crop and cropcap video ops since they are now no
> longer used.
>
> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
> Cc: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> drivers/media/i2c/ak881x.c | 28 +++--
> drivers/media/i2c/soc_camera/imx074.c | 42 +++----
> drivers/media/i2c/soc_camera/mt9m001.c | 70 ++++++-----
> drivers/media/i2c/soc_camera/mt9m111.c | 57 ++++-----
> drivers/media/i2c/soc_camera/mt9t031.c | 52 +++++----
> drivers/media/i2c/soc_camera/mt9t112.c | 60 +++++-----
> drivers/media/i2c/soc_camera/mt9v022.c | 68 ++++++-----
> drivers/media/i2c/soc_camera/ov2640.c | 41 +++----
> drivers/media/i2c/soc_camera/ov5642.c | 53 +++++----
> drivers/media/i2c/soc_camera/ov6650.c | 74 ++++++------
> drivers/media/i2c/soc_camera/ov772x.c | 44 ++++---
> drivers/media/i2c/soc_camera/ov9640.c | 41 +++----
> drivers/media/i2c/soc_camera/ov9740.c | 41 +++----
> drivers/media/i2c/soc_camera/rj54n1cb0c.c | 52 +++++----
> drivers/media/i2c/soc_camera/tw9910.c | 47 +++-----
> drivers/media/i2c/tvp5150.c | 81 +++++++------
> drivers/media/platform/omap3isp/ispvideo.c | 88 +++++++++-----
The OMAP3 ISP set crop implementation (as well as the OMAP4 ISS
implementation, as the code has been copied) is a leftover that should be
removed. Your patch doesn't hurt though, so
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
for those two drivers.
I'll post a separate patch to remove set_selection on top of this patch
series.
> drivers/media/platform/sh_vou.c | 13 ++-
> drivers/media/platform/soc_camera/mx2_camera.c | 18 ++-
> drivers/media/platform/soc_camera/mx3_camera.c | 18 ++-
> drivers/media/platform/soc_camera/omap1_camera.c | 23 ++--
> drivers/media/platform/soc_camera/pxa_camera.c | 17 ++-
> drivers/media/platform/soc_camera/rcar_vin.c | 26 ++---
> .../platform/soc_camera/sh_mobile_ceu_camera.c | 32 +++--
> drivers/media/platform/soc_camera/soc_camera.c | 130 +++++-------------
> .../platform/soc_camera/soc_camera_platform.c | 45 +++----
> drivers/media/platform/soc_camera/soc_scale_crop.c | 85 ++++++++------
> drivers/media/platform/soc_camera/soc_scale_crop.h | 6 +-
> drivers/staging/media/omap4iss/iss_video.c | 88 +++++++++-----
> include/media/soc_camera.h | 7 +-
> include/media/v4l2-subdev.h | 3 -
> 31 files changed, 735 insertions(+), 715 deletions(-)
--
Regards,
Laurent Pinchart
prev parent reply other threads:[~2015-04-12 13:03 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-09 10:21 [PATCH 0/7] v4l2: convert video ops to pad ops Hans Verkuil
2015-04-09 10:21 ` [PATCH 1/7] v4l2: replace enum_mbus_fmt by enum_mbus_code Hans Verkuil
2015-04-15 20:08 ` Guennadi Liakhovetski
2015-04-17 8:15 ` Hans Verkuil
2015-04-16 10:08 ` Scott Jiang
2015-04-16 20:44 ` Lad, Prabhakar
2015-04-09 10:21 ` [PATCH 2/7] v4l2: replace video op g_mbus_fmt by pad op get_fmt Hans Verkuil
2015-04-15 20:30 ` Guennadi Liakhovetski
2015-04-16 20:50 ` Lad, Prabhakar
2015-06-14 22:08 ` Laurent Pinchart
2015-06-15 10:25 ` Hans Verkuil
2015-06-16 15:53 ` Laurent Pinchart
2015-04-09 10:21 ` [PATCH 3/7] v4l2: replace try_mbus_fmt by set_fmt Hans Verkuil
2015-05-02 17:57 ` Guennadi Liakhovetski
2015-04-09 10:21 ` [PATCH 4/7] v4l2: replace s_mbus_fmt " Hans Verkuil
2015-04-09 10:21 ` [PATCH 5/7] v4l2: replace try_mbus_fmt by set_fmt in bridge drivers Hans Verkuil
2015-04-16 9:50 ` Scott Jiang
2015-04-09 10:21 ` [PATCH 6/7] v4l2: replace s_mbus_fmt " Hans Verkuil
2015-04-16 9:48 ` Scott Jiang
2015-04-16 20:54 ` Lad, Prabhakar
2015-04-09 10:21 ` [PATCH 7/7] v4l2: remove g/s_crop and cropcap from video ops Hans Verkuil
2015-04-12 13:03 ` Laurent Pinchart [this message]
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=5051108.JvQ4aMPQqk@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=g.liakhovetski@gmx.de \
--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