diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2007-03-18 22:24:04 -0700 |
---|---|---|
committer | Trent Piepho <xyzzy@speakeasy.org> | 2007-03-18 22:24:04 -0700 |
commit | 937771edc9b182de0db822cd07fefaf49b91c13b (patch) | |
tree | 91c0d2103b3bfa6357ed26fd28c0b84b1e38a2a8 /linux/drivers/media/dvb/frontends/dvb-pll.h | |
parent | 2fcc2129592c2a6c05d754593879936485dad480 (diff) | |
download | mediapointer-dvb-s2-937771edc9b182de0db822cd07fefaf49b91c13b.tar.gz mediapointer-dvb-s2-937771edc9b182de0db822cd07fefaf49b91c13b.tar.bz2 |
dvb-pll: Move IF frequency from per-band data to per-tuner data
The IF frequency was specified for each band, but it's not something that
changes from band to band. None of the tuner definitions had a different
IF frequency (called offset) from one band to another.
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Acked-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/dvb-pll.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/dvb-pll.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/dvb-pll.h b/linux/drivers/media/dvb/frontends/dvb-pll.h index bb79a7815..40b2dca1b 100644 --- a/linux/drivers/media/dvb/frontends/dvb-pll.h +++ b/linux/drivers/media/dvb/frontends/dvb-pll.h @@ -12,12 +12,12 @@ struct dvb_pll_desc { char *name; u32 min; u32 max; + u32 iffreq; void (*setbw)(u8 *buf, u32 freq, int bandwidth); u8 *initdata; int count; struct { u32 limit; - u32 offset; u32 stepsize; u8 config; u8 cb; |