diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-05-29 06:59:48 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-06-17 08:49:32 -0300 |
commit | 5f7105755ffe17840a209c556a6f56f31122304b (patch) | |
tree | 62c2db701ea7640eb6e1be43696bc28972575669 /drivers/media/radio/saa7706h.c | |
parent | 4b7be2bbe0fa8a0e70a61506dcdf088e3b8a8917 (diff) | |
download | talos-obmc-linux-5f7105755ffe17840a209c556a6f56f31122304b.tar.gz talos-obmc-linux-5f7105755ffe17840a209c556a6f56f31122304b.zip |
[media] radio: 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/radio/saa7706h.c')
-rw-r--r-- | drivers/media/radio/saa7706h.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/media/radio/saa7706h.c b/drivers/media/radio/saa7706h.c index 06c06cc9ff25..d1f30d6762d3 100644 --- a/drivers/media/radio/saa7706h.c +++ b/drivers/media/radio/saa7706h.c @@ -25,7 +25,6 @@ #include <linux/i2c.h> #include <linux/slab.h> #include <media/v4l2-device.h> -#include <media/v4l2-chip-ident.h> #define DRIVER_NAME "saa7706h" @@ -349,16 +348,7 @@ static int saa7706h_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) return -EINVAL; } -static int saa7706h_g_chip_ident(struct v4l2_subdev *sd, - struct v4l2_dbg_chip_ident *chip) -{ - struct i2c_client *client = v4l2_get_subdevdata(sd); - - return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_SAA7706H, 0); -} - static const struct v4l2_subdev_core_ops saa7706h_core_ops = { - .g_chip_ident = saa7706h_g_chip_ident, .queryctrl = saa7706h_queryctrl, .g_ctrl = saa7706h_g_ctrl, .s_ctrl = saa7706h_s_ctrl, |