diff options
author | Johannes Stezenbach <devnull@localhost> | 2005-01-29 18:46:55 +0000 |
---|---|---|
committer | Johannes Stezenbach <devnull@localhost> | 2005-01-29 18:46:55 +0000 |
commit | 9d3aa10fba146ddeae004925a3cf3ec1f4a81eae (patch) | |
tree | 5c82e2dc9c4a16f85aed0a361555a4802969aa8b /linux/drivers/media/dvb/frontends/mt352.h | |
parent | e696ad2052aef91a0bcb0db3dcc5d08f77ce9f3a (diff) | |
download | mediapointer-dvb-s2-9d3aa10fba146ddeae004925a3cf3ec1f4a81eae.tar.gz mediapointer-dvb-s2-9d3aa10fba146ddeae004925a3cf3ec1f4a81eae.tar.bz2 |
patch by Gerd Knorr:
add support for the Pinnacle MediaCenter 300i DVB-T
Diffstat (limited to 'linux/drivers/media/dvb/frontends/mt352.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/mt352.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/mt352.h b/linux/drivers/media/dvb/frontends/mt352.h index 390b6126e..ec85e910d 100644 --- a/linux/drivers/media/dvb/frontends/mt352.h +++ b/linux/drivers/media/dvb/frontends/mt352.h @@ -40,6 +40,13 @@ struct mt352_config /* the demodulator's i2c address */ u8 demod_address; + /* frequencies in kHz */ + int adc_clock; // default: 20480 + int if2; // default: 36166 + + /* set if no pll is connected to the secondary i2c bus */ + int no_tuner; + /* Initialise the demodulator and PLL. Cannot be NULL */ int (*demod_init)(struct dvb_frontend* fe); @@ -54,6 +61,6 @@ extern struct dvb_frontend* mt352_attach(const struct mt352_config* config, struct i2c_adapter* i2c); extern int mt352_write(struct dvb_frontend* fe, u8* ibuf, int ilen); -extern u8 mt352_read(struct dvb_frontend *fe, u8 reg); +extern int mt352_read(struct dvb_frontend *fe, u8 reg); #endif // MT352_H |