diff options
author | Chris Pascoe <c.pascoe@itee.uq.edu.au> | 2007-11-20 06:17:54 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:02:37 -0500 |
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 c44b9799efaa..deeb3871a2aa 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 = { | |||
435 | 435 | ||
436 | static struct zl10353_config cxusb_zl10353_xc3028_config = { | 436 | static struct zl10353_config cxusb_zl10353_xc3028_config = { |
437 | .demod_address = 0x0f, | 437 | .demod_address = 0x0f, |
438 | .if2 = 4560, | 438 | .if2 = 45600, |
439 | .no_tuner = 1, | 439 | .no_tuner = 1, |
440 | .parallel_ts = 1, | 440 | .parallel_ts = 1, |
441 | }; | 441 | }; |