aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2006-02-06 16:52:24 -0500
committerMauro Carvalho Chehab <mchehab@brturbo.com.br>2006-02-07 04:40:51 -0500
commitdf821f758c37dce41fbef0d20932909332619f04 (patch)
treecfbc639f25141fa48f6c0081020c7b7df84f9c70
parent2d77645a0e8228d3473008ec736e89b7105eafff (diff)
V4L/DVB (3324): Fix Samsung tuner frequency ranges
Forgot to take the NTSC frequency offset into account. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r--drivers/media/video/tuner-types.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/tuner-types.c b/drivers/media/video/tuner-types.c
index 9786e590624a..a90bc04cf807 100644
--- a/drivers/media/video/tuner-types.c
+++ b/drivers/media/video/tuner-types.c
@@ -970,8 +970,8 @@ static struct tuner_params tuner_tnf_5335mf_params[] = {
970/* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */ 970/* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */
971 971
972static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = { 972static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = {
973 { 16 * 175.75 /*MHz*/, 0xce, 0x01, }, 973 { 16 * 130.00 /*MHz*/, 0xce, 0x01, },
974 { 16 * 410.25 /*MHz*/, 0xce, 0x02, }, 974 { 16 * 364.50 /*MHz*/, 0xce, 0x02, },
975 { 16 * 999.99 , 0xce, 0x08, }, 975 { 16 * 999.99 , 0xce, 0x08, },
976}; 976};
977 977