aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/cx231xx
diff options
context:
space:
mode:
authorHans Verkuil <hans.verkuil@cisco.com>2013-02-07 11:22:06 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-03-05 12:26:05 -0500
commitb31077a88a1242541b1c9b191c238ac313609d9f (patch)
tree8cec3b7fccffa02f10e60ac56f55b1d5e0926692 /drivers/media/usb/cx231xx
parent4485ea917b06c63087f369a7139c39b27ad14d10 (diff)
[media] cx231xx: disable 417 support from the Conexant video grabber
The 417 support doesn't work. Until someone can dig into this driver to figure out why it isn't working the 417 support is disabled. Sometimes you can actually stream a bit, but very soon the whole machine crashes, so something is seriously wrong. For the record, this was not introduced by my recent changes to this driver, it was broken before that. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb/cx231xx')
-rw-r--r--drivers/media/usb/cx231xx/cx231xx-cards.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/media/usb/cx231xx/cx231xx-cards.c b/drivers/media/usb/cx231xx/cx231xx-cards.c
index d6acb1ebff33..70944516125a 100644
--- a/drivers/media/usb/cx231xx/cx231xx-cards.c
+++ b/drivers/media/usb/cx231xx/cx231xx-cards.c
@@ -263,7 +263,10 @@ struct cx231xx_board cx231xx_boards[] = {
263 .norm = V4L2_STD_PAL, 263 .norm = V4L2_STD_PAL,
264 .no_alt_vanc = 1, 264 .no_alt_vanc = 1,
265 .external_av = 1, 265 .external_av = 1,
266 .has_417 = 1, 266 /* Actually, it has a 417, but it isn't working correctly.
267 * So set to 0 for now until someone can manage to get this
268 * to work reliably. */
269 .has_417 = 0,
267 270
268 .input = {{ 271 .input = {{
269 .type = CX231XX_VMUX_COMPOSITE1, 272 .type = CX231XX_VMUX_COMPOSITE1,