Commit 289ea1f0 authored by Simon Farnsworth's avatar Simon Farnsworth Committed by Mauro Carvalho Chehab

V4L/DVB (6203): Fix SVideo input on KWorld DVB-T 220 boards

Fix SVideo input on KWorld DVB-T 220 boards. Without this patch, the
luma pin on the SVideo input is treated as a composite in, and the
chroma pin is ignored.

Also, fix the radio, and provide a second composite input for people who
are used to the existing composite on SVideo connector behaviour.
Signed-off-by: default avatarSimon Farnsworth <simon.farnsworth@onelan.co.uk>
Reviewed-by: default avatarHermann Pitton <hermann-pitton@arcor.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent f139fa71
...@@ -2771,6 +2771,7 @@ struct saa7134_board saa7134_boards[] = { ...@@ -2771,6 +2771,7 @@ struct saa7134_board saa7134_boards[] = {
.tuner_addr = ADDR_UNSET, .tuner_addr = ADDR_UNSET,
.radio_addr = ADDR_UNSET, .radio_addr = ADDR_UNSET,
.mpeg = SAA7134_MPEG_DVB, .mpeg = SAA7134_MPEG_DVB,
.gpiomask = 1 << 21,
.inputs = {{ .inputs = {{
.name = name_tv, .name = name_tv,
.vmux = 1, .vmux = 1,
...@@ -2781,13 +2782,18 @@ struct saa7134_board saa7134_boards[] = { ...@@ -2781,13 +2782,18 @@ struct saa7134_board saa7134_boards[] = {
.vmux = 3, .vmux = 3,
.amux = LINE1, .amux = LINE1,
},{ },{
.name = name_svideo, .name = name_comp2,
.vmux = 0, .vmux = 0,
.amux = LINE1, .amux = LINE1,
},{
.name = name_svideo,
.vmux = 8,
.amux = LINE1,
}}, }},
.radio = { .radio = {
.name = name_radio, .name = name_radio,
.amux = LINE1, .amux = TV,
.gpio = 0x0200000,
}, },
}, },
[SAA7134_BOARD_KWORLD_DVBT_210] = { [SAA7134_BOARD_KWORLD_DVBT_210] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment