aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-02-18 10:20:03 -0500
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-02-26 06:45:01 -0500
commit7e2b41e9127e4e4ceeb2d4e86405846974cc4cec (patch)
tree9ec706a0fc4782c850b00f568a78194fd15ca799
parent18e8d630cc0e5cc1282b2393aeab1744af4d43ac (diff)
[media] cx231xx: Improve the media controller comment
There are two problems at the comment: - it is badly idented; - its comment doesn't mean anything. Fix it. Requested-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r--drivers/media/usb/cx231xx/cx231xx-video.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/media/usb/cx231xx/cx231xx-video.c b/drivers/media/usb/cx231xx/cx231xx-video.c
index 634763535d60..86ad746cc4cb 100644
--- a/drivers/media/usb/cx231xx/cx231xx-video.c
+++ b/drivers/media/usb/cx231xx/cx231xx-video.c
@@ -714,12 +714,13 @@ static int cx231xx_enable_analog_tuner(struct cx231xx *dev)
714 if (!mdev) 714 if (!mdev)
715 return 0; 715 return 0;
716 716
717/* 717 /*
718 * This will find the tuner that it is connected into the decoder. 718 * This will find the tuner that is connected into the decoder.
719 * Technically, this is not 100% correct, as the device may be using an 719 * Technically, this is not 100% correct, as the device may be
720 * analog input instead of the tuner. However, we can't use the DVB for dvb 720 * using an analog input instead of the tuner. However, as we can't
721 * while the DMA engine is being used for V4L2. 721 * do DVB streaming while the DMA engine is being used for V4L2,
722 */ 722 * this should be enough for the actual needs.
723 */
723 media_device_for_each_entity(entity, mdev) { 724 media_device_for_each_entity(entity, mdev) {
724 if (entity->type == MEDIA_ENT_T_V4L2_SUBDEV_DECODER) { 725 if (entity->type == MEDIA_ENT_T_V4L2_SUBDEV_DECODER) {
725 decoder = entity; 726 decoder = entity;