diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-25 20:55:06 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-25 20:55:06 -0500 |
commit | 32715a65e8bb4faa048ce018c92d733c789a8310 (patch) | |
tree | 9aafc947a7707c143246f527253353344fb81e9c /linux/drivers/media/video/cx88/cx88-cards.c | |
parent | 59a05ecf2d6ff7eecb52fd181fbc8e09de9c3bfd (diff) | |
download | mediapointer-dvb-s2-32715a65e8bb4faa048ce018c92d733c789a8310.tar.gz mediapointer-dvb-s2-32715a65e8bb4faa048ce018c92d733c789a8310.tar.bz2 |
cx88: fix GPIO for FusionHDTV 7 Gold input selection
From: Michael Krufky <mkrufky@linuxtv.org>
Fix GPIO for FusionHDTV 7 Gold tv / s-video / composite input selection.
Fix card textual name to match other FusionHDTV device names.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-cards.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index 53d996090..16b5116ba 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -1622,7 +1622,7 @@ static const struct cx88_board cx88_boards[] = { .mpeg = CX88_MPEG_DVB, }, [CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD] = { - .name = "DVICO FusionHDTV7 Gold", + .name = "DViCO FusionHDTV 7 Gold", .tuner_type = TUNER_XC5000, .radio_type = UNSET, .tuner_addr = ADDR_UNSET, @@ -1630,15 +1630,15 @@ static const struct cx88_board cx88_boards[] = { .input = {{ .type = CX88_VMUX_TELEVISION, .vmux = 0, - .gpio0 = 0x37df, + .gpio0 = 0x10df, },{ .type = CX88_VMUX_COMPOSITE1, .vmux = 1, - .gpio0 = 0x37df, + .gpio0 = 0x16d9, },{ .type = CX88_VMUX_SVIDEO, .vmux = 2, - .gpio0 = 0x37df, + .gpio0 = 0x16d9, }}, }, }; |