diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-05-26 07:24:00 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-06-21 09:30:54 -0400 |
commit | 6ec19898ed6990baa285b8c96a8b1a0d0366bc46 (patch) | |
tree | 66a395be3139b5d5f58d09a453ef9cf34e81cf39 | |
parent | facd23664f1d63c33fbc6da52261c8548ed3fbd4 (diff) |
[media] v4l2: remove obsolete v4l2_chip_match_host()
This function is no longer needed since it is now the responsibility of the
v4l2 core to check if the DBG_G/S_REGISTER and DBG_G_CHIP_INFO ioctls are
called for the bridge driver or not.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/usb/usbvision/usbvision-video.c | 4 | ||||
-rw-r--r-- | drivers/media/v4l2-core/v4l2-common.c | 11 | ||||
-rw-r--r-- | include/media/v4l2-common.h | 1 |
3 files changed, 0 insertions, 16 deletions
diff --git a/drivers/media/usb/usbvision/usbvision-video.c b/drivers/media/usb/usbvision/usbvision-video.c index 7ad872a3e31a..f0a0b7f2da92 100644 --- a/drivers/media/usb/usbvision/usbvision-video.c +++ b/drivers/media/usb/usbvision/usbvision-video.c | |||
@@ -467,8 +467,6 @@ static int vidioc_g_register(struct file *file, void *priv, | |||
467 | struct usb_usbvision *usbvision = video_drvdata(file); | 467 | struct usb_usbvision *usbvision = video_drvdata(file); |
468 | int err_code; | 468 | int err_code; |
469 | 469 | ||
470 | if (!v4l2_chip_match_host(®->match)) | ||
471 | return -EINVAL; | ||
472 | /* NT100x has a 8-bit register space */ | 470 | /* NT100x has a 8-bit register space */ |
473 | err_code = usbvision_read_reg(usbvision, reg->reg&0xff); | 471 | err_code = usbvision_read_reg(usbvision, reg->reg&0xff); |
474 | if (err_code < 0) { | 472 | if (err_code < 0) { |
@@ -488,8 +486,6 @@ static int vidioc_s_register(struct file *file, void *priv, | |||
488 | struct usb_usbvision *usbvision = video_drvdata(file); | 486 | struct usb_usbvision *usbvision = video_drvdata(file); |
489 | int err_code; | 487 | int err_code; |
490 | 488 | ||
491 | if (!v4l2_chip_match_host(®->match)) | ||
492 | return -EINVAL; | ||
493 | /* NT100x has a 8-bit register space */ | 489 | /* NT100x has a 8-bit register space */ |
494 | err_code = usbvision_write_reg(usbvision, reg->reg & 0xff, reg->val); | 490 | err_code = usbvision_write_reg(usbvision, reg->reg & 0xff, reg->val); |
495 | if (err_code < 0) { | 491 | if (err_code < 0) { |
diff --git a/drivers/media/v4l2-core/v4l2-common.c b/drivers/media/v4l2-core/v4l2-common.c index 3fed63f4e026..5fd76609e613 100644 --- a/drivers/media/v4l2-core/v4l2-common.c +++ b/drivers/media/v4l2-core/v4l2-common.c | |||
@@ -227,17 +227,6 @@ u32 v4l2_ctrl_next(const u32 * const * ctrl_classes, u32 id) | |||
227 | } | 227 | } |
228 | EXPORT_SYMBOL(v4l2_ctrl_next); | 228 | EXPORT_SYMBOL(v4l2_ctrl_next); |
229 | 229 | ||
230 | int v4l2_chip_match_host(const struct v4l2_dbg_match *match) | ||
231 | { | ||
232 | switch (match->type) { | ||
233 | case V4L2_CHIP_MATCH_BRIDGE: | ||
234 | return match->addr == 0; | ||
235 | default: | ||
236 | return 0; | ||
237 | } | ||
238 | } | ||
239 | EXPORT_SYMBOL(v4l2_chip_match_host); | ||
240 | |||
241 | #if IS_ENABLED(CONFIG_I2C) | 230 | #if IS_ENABLED(CONFIG_I2C) |
242 | int v4l2_chip_match_i2c_client(struct i2c_client *c, const struct v4l2_dbg_match *match) | 231 | int v4l2_chip_match_i2c_client(struct i2c_client *c, const struct v4l2_dbg_match *match) |
243 | { | 232 | { |
diff --git a/include/media/v4l2-common.h b/include/media/v4l2-common.h index 1d93c48cb371..e7821fb3cd86 100644 --- a/include/media/v4l2-common.h +++ b/include/media/v4l2-common.h | |||
@@ -106,7 +106,6 @@ struct i2c_client; /* forward reference */ | |||
106 | int v4l2_chip_match_i2c_client(struct i2c_client *c, const struct v4l2_dbg_match *match); | 106 | int v4l2_chip_match_i2c_client(struct i2c_client *c, const struct v4l2_dbg_match *match); |
107 | int v4l2_chip_ident_i2c_client(struct i2c_client *c, struct v4l2_dbg_chip_ident *chip, | 107 | int v4l2_chip_ident_i2c_client(struct i2c_client *c, struct v4l2_dbg_chip_ident *chip, |
108 | u32 ident, u32 revision); | 108 | u32 ident, u32 revision); |
109 | int v4l2_chip_match_host(const struct v4l2_dbg_match *match); | ||
110 | 109 | ||
111 | /* ------------------------------------------------------------------------- */ | 110 | /* ------------------------------------------------------------------------- */ |
112 | 111 | ||