diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-10-16 15:53:01 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-10-16 15:53:01 -0400 |
commit | e49be0ee28803298c337c188e4a52abfebdae09f (patch) | |
tree | a0cb01b7fc8f6987050b744566b6abb92f503ce4 /linux/drivers/media/video/cx88 | |
parent | 3ef16b306ba538390baeba731359fe561c8c3312 (diff) | |
download | mediapointer-dvb-s2-e49be0ee28803298c337c188e4a52abfebdae09f.tar.gz mediapointer-dvb-s2-e49be0ee28803298c337c188e4a52abfebdae09f.tar.bz2 |
cx88: use external adc for svideo/composite on the KWorld HardwareMpegTV XPert
From: Michael Krufky <mkrufky@linuxtv.org>
For the KWorld HardwareMpegTV XPert, the external adc must be used for
svideo / composite inputs, but television / radio inputs use the internal adc.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/video/cx88')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index 1aecf4ec3..1fb325665 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -1064,7 +1064,6 @@ struct cx88_board cx88_boards[] = { .mpeg = CX88_MPEG_DVB, }, [CX88_BOARD_KWORLD_HARDWARE_MPEG_TV_XPERT] = { - /* FIXME: Audio not working for s-video / composite inputs. */ .name = "KWorld HardwareMpegTV XPert", .tuner_type = TUNER_PHILIPS_TDA8290, .radio_type = UNSET, @@ -1079,10 +1078,12 @@ struct cx88_board cx88_boards[] = { .type = CX88_VMUX_COMPOSITE1, .vmux = 1, .gpio0 = 0x3de6, + .extadc = 1, },{ .type = CX88_VMUX_SVIDEO, .vmux = 2, .gpio0 = 0x3de6, + .extadc = 1, }}, .radio = { .type = CX88_RADIO, |