diff options
author | Patrick Boettcher <pb@linuxtv.org> | 2006-07-04 18:35:40 +0200 |
---|---|---|
committer | Patrick Boettcher <pb@linuxtv.org> | 2006-07-04 18:35:40 +0200 |
commit | e94018d54aa38ab9118db9a3e312f09f7eabd4ee (patch) | |
tree | e99fbf7e0c130564d8c8dd3610f4559816a2860a /linux/drivers/media/dvb/frontends/mt2060.h | |
parent | 8fbac88a9c801be025c283275f2eb6585a5cc454 (diff) | |
download | mediapointer-dvb-s2-e94018d54aa38ab9118db9a3e312f09f7eabd4ee.tar.gz mediapointer-dvb-s2-e94018d54aa38ab9118db9a3e312f09f7eabd4ee.tar.bz2 |
Update for MT2060 to use dvb_tuner_ops
From: Olivier DANET <odanet@caramail.com>
new tuner api
minor fixes for tuning
Signed-off-by: Olivier DANET <odanet@caramail.com>
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/mt2060.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/mt2060.h | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/linux/drivers/media/dvb/frontends/mt2060.h b/linux/drivers/media/dvb/frontends/mt2060.h index d5dae102f..c58b03e82 100644 --- a/linux/drivers/media/dvb/frontends/mt2060.h +++ b/linux/drivers/media/dvb/frontends/mt2060.h @@ -22,23 +22,14 @@ #ifndef MT2060_H #define MT2060_H -#include <linux/i2c.h> -#include <linux/dvb/frontend.h> +struct dvb_frontend; +struct i2c_adapter; struct mt2060_config { u8 i2c_address; /* Shall we add settings for the discrete outputs ? */ }; -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,u16 if1); +extern int mt2060_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct mt2060_config *cfg, u16 if1); #endif |