diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2011-07-15 19:03:38 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-07-27 16:56:08 -0400 |
commit | 7dfff95366f48bf66f77c17cdc9ebd8be696ac5d (patch) | |
tree | c4cb975f5b8b8c3008921d38fa6e4deed9c8dbc9 /drivers/media/video/mt9m001.c | |
parent | d33b290a149dafe2e3cc2901ec726bea09a2c0f4 (diff) |
[media] V4L: soc-camera: remove soc-camera bus and devices on it
Now that v4l2 subdevices have got their own device objects, having
one more device in soc-camera clients became redundant and confusing.
This patch removes those devices and the soc-camera bus, they used to
reside on.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Acked-by: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/mt9m001.c')
-rw-r--r-- | drivers/media/video/mt9m001.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/drivers/media/video/mt9m001.c b/drivers/media/video/mt9m001.c index e2bbd8c35c98..4da9cca939c1 100644 --- a/drivers/media/video/mt9m001.c +++ b/drivers/media/video/mt9m001.c | |||
@@ -603,13 +603,9 @@ static int mt9m001_video_probe(struct soc_camera_device *icd, | |||
603 | unsigned long flags; | 603 | unsigned long flags; |
604 | int ret; | 604 | int ret; |
605 | 605 | ||
606 | /* | 606 | /* We must have a parent by now. And it cannot be a wrong one. */ |
607 | * We must have a parent by now. And it cannot be a wrong one. | 607 | BUG_ON(!icd->parent || |
608 | * So this entire test is completely redundant. | 608 | to_soc_camera_host(icd->parent)->nr != icd->iface); |
609 | */ | ||
610 | if (!icd->dev.parent || | ||
611 | to_soc_camera_host(icd->dev.parent)->nr != icd->iface) | ||
612 | return -ENODEV; | ||
613 | 609 | ||
614 | /* Enable the chip */ | 610 | /* Enable the chip */ |
615 | data = reg_write(client, MT9M001_CHIP_ENABLE, 1); | 611 | data = reg_write(client, MT9M001_CHIP_ENABLE, 1); |
@@ -675,8 +671,8 @@ static void mt9m001_video_remove(struct soc_camera_device *icd) | |||
675 | { | 671 | { |
676 | struct soc_camera_link *icl = to_soc_camera_link(icd); | 672 | struct soc_camera_link *icl = to_soc_camera_link(icd); |
677 | 673 | ||
678 | dev_dbg(&icd->dev, "Video removed: %p, %p\n", | 674 | dev_dbg(icd->pdev, "Video removed: %p, %p\n", |
679 | icd->dev.parent, icd->vdev); | 675 | icd->parent, icd->vdev); |
680 | if (icl->free_bus) | 676 | if (icl->free_bus) |
681 | icl->free_bus(icl); | 677 | icl->free_bus(icl); |
682 | } | 678 | } |