All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
To: Mauro Carvalho Chehab <mchehab@osg.samsung.com>,
	Andy Walls <awalls@md.metrocast.net>,
	Hans Verkuil <hans.verkuil@cisco.com>,
	"Lad, Prabhakar" <prabhakar.csengg@gmail.com>,
	Boris BREZILLON <boris.brezillon@free-electrons.com>,
	Sakari Ailus <sakari.ailus@linux.intel.com>,
	Guennadi Liakhovetski <g.liakhovetski@gmx.de>,
	Scott Jiang <scott.jiang.linux@gmail.com>,
	Axel Lin <axel.lin@ingics.com>,
	linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Subject: [PATCH 08/12] media/i2c/tvp514x: Remove compat control ops
Date: Fri, 12 Jun 2015 18:31:14 +0200	[thread overview]
Message-ID: <1434126678-7978-9-git-send-email-ricardo.ribalda@gmail.com> (raw)
In-Reply-To: <1434126678-7978-1-git-send-email-ricardo.ribalda@gmail.com>

They are no longer used in old non-control-framework
bridge drivers.

Reported-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
---
 drivers/media/i2c/tvp514x.c | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/drivers/media/i2c/tvp514x.c b/drivers/media/i2c/tvp514x.c
index 24e47279e30c..a93985a9b070 100644
--- a/drivers/media/i2c/tvp514x.c
+++ b/drivers/media/i2c/tvp514x.c
@@ -957,16 +957,6 @@ static int tvp514x_set_pad_format(struct v4l2_subdev *sd,
 	return 0;
 }
 
-static const struct v4l2_subdev_core_ops tvp514x_core_ops = {
-	.g_ext_ctrls = v4l2_subdev_g_ext_ctrls,
-	.try_ext_ctrls = v4l2_subdev_try_ext_ctrls,
-	.s_ext_ctrls = v4l2_subdev_s_ext_ctrls,
-	.g_ctrl = v4l2_subdev_g_ctrl,
-	.s_ctrl = v4l2_subdev_s_ctrl,
-	.queryctrl = v4l2_subdev_queryctrl,
-	.querymenu = v4l2_subdev_querymenu,
-};
-
 static const struct v4l2_subdev_video_ops tvp514x_video_ops = {
 	.s_std = tvp514x_s_std,
 	.s_routing = tvp514x_s_routing,
@@ -983,7 +973,6 @@ static const struct v4l2_subdev_pad_ops tvp514x_pad_ops = {
 };
 
 static const struct v4l2_subdev_ops tvp514x_ops = {
-	.core = &tvp514x_core_ops,
 	.video = &tvp514x_video_ops,
 	.pad = &tvp514x_pad_ops,
 };
-- 
2.1.4


  parent reply	other threads:[~2015-06-12 16:33 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-12 16:31 [PATCH 00/12] media/subdevices: Remove unused compat control ops Ricardo Ribalda Delgado
2015-06-12 16:31 ` [PATCH 01/12] media/i2c/adv7343: Remove " Ricardo Ribalda Delgado
2015-06-15 12:51   ` Lad, Prabhakar
2015-06-12 16:31 ` [PATCH 02/12] media/i2c/adv7393: " Ricardo Ribalda Delgado
2015-06-12 16:31 ` [PATCH 03/12] media/i2c/cs5345: " Ricardo Ribalda Delgado
2015-06-12 16:31 ` [PATCH 04/12] media/i2c/saa717x: " Ricardo Ribalda Delgado
2015-06-12 16:31 ` [PATCH 05/12] media/i2c/sr030pc30: " Ricardo Ribalda Delgado
2015-06-15 10:23   ` Hans Verkuil
2015-06-15 11:51     ` Sylwester Nawrocki
2015-06-12 16:31 ` [PATCH 06/12] media/i2c/tda7432: " Ricardo Ribalda Delgado
2015-06-12 16:31 ` [PATCH 07/12] media/i2c/tlv320aic23: " Ricardo Ribalda Delgado
2015-06-12 16:31 ` Ricardo Ribalda Delgado [this message]
2015-06-15 12:51   ` [PATCH 08/12] media/i2c/tvp514x: " Lad, Prabhakar
2015-06-12 16:31 ` [PATCH 09/12] media/i2c/tvp7002: " Ricardo Ribalda Delgado
2015-06-15 12:52   ` Lad, Prabhakar
2015-06-12 16:31 ` [PATCH 10/12] i2c/wm8739: " Ricardo Ribalda Delgado
2015-06-12 16:31 ` [PATCH 11/12] pci/ivtv/ivtv-gpio: " Ricardo Ribalda Delgado
2015-06-12 16:31 ` [PATCH 12/12] media/radio/saa7706h: " Ricardo Ribalda Delgado

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=1434126678-7978-9-git-send-email-ricardo.ribalda@gmail.com \
    --to=ricardo.ribalda@gmail.com \
    --cc=awalls@md.metrocast.net \
    --cc=axel.lin@ingics.com \
    --cc=boris.brezillon@free-electrons.com \
    --cc=g.liakhovetski@gmx.de \
    --cc=hans.verkuil@cisco.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@osg.samsung.com \
    --cc=prabhakar.csengg@gmail.com \
    --cc=sakari.ailus@linux.intel.com \
    --cc=scott.jiang.linux@gmail.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.