diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2006-02-06 23:52:24 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2006-02-06 23:52:24 +0200 |
commit | 504fc056843fc3e30f3df2b9683c46af2f656433 (patch) | |
tree | 51c08178d76a6b42bb243e465d5a97e855295ed7 /linux/drivers/media | |
parent | f1e940da2ce33a9b48e62632c7f838b298097609 (diff) | |
download | mediapointer-dvb-s2-504fc056843fc3e30f3df2b9683c46af2f656433.tar.gz mediapointer-dvb-s2-504fc056843fc3e30f3df2b9683c46af2f656433.tar.bz2 |
Fix Samsung tuner frequency ranges
From: Hans Verkuil <hverkuil@xs4all.nl>
Forgot to take the NTSC frequency offset into account.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media')
-rw-r--r-- | linux/drivers/media/video/tuner-types.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/tuner-types.c b/linux/drivers/media/video/tuner-types.c index d9ac7ed77..3c1b4c986 100644 --- a/linux/drivers/media/video/tuner-types.c +++ b/linux/drivers/media/video/tuner-types.c @@ -1019,8 +1019,8 @@ static struct tuner_params tuner_tnf_5335mf_params[] = { /* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */ static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = { - { 16 * 175.75 /*MHz*/, 0xce, 0x01, }, - { 16 * 410.25 /*MHz*/, 0xce, 0x02, }, + { 16 * 130.00 /*MHz*/, 0xce, 0x01, }, + { 16 * 364.50 /*MHz*/, 0xce, 0x02, }, { 16 * 999.99 , 0xce, 0x08, }, }; |