diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-03 02:27:34 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-03 02:27:34 -0300 |
commit | 2e4dae3dad6d21fbd5ce4b97f4724ab1a830af8c (patch) | |
tree | 36f4cf1bad971ad654c9773fafdc1c60bb8babc4 /linux/drivers/media/common | |
parent | 054fa57e4d628733bccc6deff5fb9497c0620d34 (diff) | |
download | mediapointer-dvb-s2-2e4dae3dad6d21fbd5ce4b97f4724ab1a830af8c.tar.gz mediapointer-dvb-s2-2e4dae3dad6d21fbd5ce4b97f4724ab1a830af8c.tar.bz2 |
tuner-xc2028: Improve comments, based on Andy Walls and Hermann Pitton
From: Mauro Carvalho Chehab <mchehab@redhat.com>
feedback
CC: Andy Walls <awalls@radix.net>
CC: Hermann Pitton <hermann-pitton@arcor.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers/media/common')
-rw-r--r-- | linux/drivers/media/common/tuners/tuner-xc2028.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linux/drivers/media/common/tuners/tuner-xc2028.c b/linux/drivers/media/common/tuners/tuner-xc2028.c index c98a628e8..083e62723 100644 --- a/linux/drivers/media/common/tuners/tuner-xc2028.c +++ b/linux/drivers/media/common/tuners/tuner-xc2028.c @@ -926,7 +926,8 @@ static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */, /* * Digital modes require an offset to adjust to the - * proper frequency + * proper frequency. + * Analog modes require offset = 0 */ if (new_mode != T_ANALOG_TV) { /* Sets the offset according with firmware */ @@ -940,7 +941,7 @@ static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */, /* * We must adjust the offset by 500kHz when * tuning a 7MHz VHF channel with DTV78 firmware - * (used in Australia) + * (used in Australia, Italy and Germany) */ if ((priv->cur_fw.type & DTV78) && freq < 470000000) offset -= 500000; |