diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2006-04-17 18:22:15 +0200 |
---|---|---|
committer | Patrick Boettcher <pb@linuxtv.org> | 2006-04-17 18:22:15 +0200 |
commit | afdbbc48eaea9b0d9a539643a88aa5a74a63dde3 (patch) | |
tree | 5674cd86af4571d16269b8bcedb0265baef1ec09 /linux/drivers/media/dvb/frontends/mt2060.h | |
parent | 392ad50208a490ee5ee73ac59e809ad366019c00 (diff) | |
download | mediapointer-dvb-s2-afdbbc48eaea9b0d9a539643a88aa5a74a63dde3.tar.gz mediapointer-dvb-s2-afdbbc48eaea9b0d9a539643a88aa5a74a63dde3.tar.bz2 |
MT2060: IF1 Offset from EEPROM, several updates
From: Patrick Boettcher <pb@linuxtv.org>
- AGC gain set to 3
- The tuning sequence has been changed to match the DibCom driver ( from I2C
spy captures )
- For LITE-ON adapters : The IF1 frequency is now tuned according to the
calibration values stored in EEPROM.
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Olivier DANET <odanet@caramail.com>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/mt2060.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/mt2060.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/mt2060.h b/linux/drivers/media/dvb/frontends/mt2060.h index 9996fd668..d5dae102f 100644 --- a/linux/drivers/media/dvb/frontends/mt2060.h +++ b/linux/drivers/media/dvb/frontends/mt2060.h @@ -33,12 +33,12 @@ struct mt2060_config { struct mt2060_state { struct mt2060_config *config; struct i2c_adapter *i2c; - + u16 if1_freq; u8 fmfreq; }; extern int mt2060_init(struct mt2060_state *state); extern int mt2060_set(struct mt2060_state *state, struct dvb_frontend_parameters *fep); -extern int mt2060_attach(struct mt2060_state *state, struct mt2060_config *config, struct i2c_adapter *i2c); +extern int mt2060_attach(struct mt2060_state *state, struct mt2060_config *config, struct i2c_adapter *i2c,u16 if1); #endif |