diff options
author | Chris Pascoe <c.pascoe@itee.uq.edu.au> | 2007-11-20 08:17:54 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 19:02:37 -0200 |
commit | a1dcd9de648c8cf21abaeca7f77885665eed4117 (patch) | |
tree | f35cdf7d007056445a0603a12fb20d3eed5ec7ba /drivers/media/dvb/dvb-usb | |
parent | 702a67624e4bc9c7056418b576af928940b7dbb9 (diff) |
V4L/DVB (6656): zl10353: store frequencies in 0.1kHz to eliminate rounding errors
Whilst reanalysing my formulas I realised it was no longer possible to get the
right values for a 36.1667MHz IF due to rounding problems.
Storing frequencies in units of 0.1kHz makes it possible to calculate these
again correctly.
Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/dvb-usb')
-rw-r--r-- | drivers/media/dvb/dvb-usb/cxusb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/cxusb.c b/drivers/media/dvb/dvb-usb/cxusb.c index c44b9799efa..deeb3871a2a 100644 --- a/drivers/media/dvb/dvb-usb/cxusb.c +++ b/drivers/media/dvb/dvb-usb/cxusb.c @@ -435,7 +435,7 @@ static struct mt352_config cxusb_mt352_config = { static struct zl10353_config cxusb_zl10353_xc3028_config = { .demod_address = 0x0f, - .if2 = 4560, + .if2 = 45600, .no_tuner = 1, .parallel_ts = 1, }; |