aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/indycam.c
diff options
context:
space:
mode:
authorHans Verkuil <hans.verkuil@cisco.com>2013-05-29 06:59:49 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-06-17 08:49:47 -0300
commitcc3590dbb8d74fb28a294047886c34ebc0ae52bc (patch)
tree39169ec6ccba55ba932aa479fdc4bec5ff5d864c /drivers/media/platform/indycam.c
parent[media] radio: remove g_chip_ident op (diff)
downloadlinux-dev-cc3590dbb8d74fb28a294047886c34ebc0ae52bc.tar.xz
linux-dev-cc3590dbb8d74fb28a294047886c34ebc0ae52bc.zip
[media] indycam: remove g_chip_ident op
This is no longer needed since the core now handles this through DBG_G_CHIP_INFO. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/platform/indycam.c')
-rw-r--r--drivers/media/platform/indycam.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/media/platform/indycam.c b/drivers/media/platform/indycam.c
index 548236333cce..f1d192bbcb4c 100644
--- a/drivers/media/platform/indycam.c
+++ b/drivers/media/platform/indycam.c
@@ -23,7 +23,6 @@
#include <linux/videodev2.h>
#include <linux/i2c.h>
#include <media/v4l2-device.h>
-#include <media/v4l2-chip-ident.h>
#include "indycam.h"
@@ -283,20 +282,9 @@ static int indycam_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl)
/* I2C-interface */
-static int indycam_g_chip_ident(struct v4l2_subdev *sd,
- struct v4l2_dbg_chip_ident *chip)
-{
- struct i2c_client *client = v4l2_get_subdevdata(sd);
- struct indycam *camera = to_indycam(sd);
-
- return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_INDYCAM,
- camera->version);
-}
-
/* ----------------------------------------------------------------------- */
static const struct v4l2_subdev_core_ops indycam_core_ops = {
- .g_chip_ident = indycam_g_chip_ident,
.g_ctrl = indycam_g_ctrl,
.s_ctrl = indycam_s_ctrl,
};