summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/dib3000.h
diff options
context:
space:
mode:
authorPatrick Boettcher <pb@linuxtv.org>2006-08-08 15:48:09 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-09-26 11:53:41 -0300
commite4d6c1f74aaac1bbe5be50e7368e5ac99d54e5a2 (patch)
treedf1106a211770b6c5c13ae32703cece73ef0e6fe /drivers/media/dvb/frontends/dib3000.h
parenta16bf5d5603184dc1db88f37051881b2eeacfd17 (diff)
downloadop-kernel-dev-e4d6c1f74aaac1bbe5be50e7368e5ac99d54e5a2.zip
op-kernel-dev-e4d6c1f74aaac1bbe5be50e7368e5ac99d54e5a2.tar.gz
V4L/DVB: Cleanups for mt2060-integration
- some coding style fixes for newly added mt2060 - moved agc-config from fixed values in dib3000mc to configurable ones - whitespace clean-ups for usb-id-file Signed-off-by: Patrick Boettcher <pb@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/frontends/dib3000.h')
-rw-r--r--drivers/media/dvb/frontends/dib3000.h29
1 files changed, 11 insertions, 18 deletions
diff --git a/drivers/media/dvb/frontends/dib3000.h b/drivers/media/dvb/frontends/dib3000.h
index d2ab747..bd0e663 100644
--- a/drivers/media/dvb/frontends/dib3000.h
+++ b/drivers/media/dvb/frontends/dib3000.h
@@ -26,10 +26,20 @@
#include <linux/dvb/frontend.h>
+struct dib3000p_agc_config {
+ u16 val[12];
+};
+
struct dib3000_config
{
/* the demodulator's i2c address */
u8 demod_address;
+
+ const struct dib3000p_agc_config *agc;
+
+ /* PLL maintenance and the i2c address of the PLL */
+ int (*pll_init)(struct dvb_frontend *fe);
+ int (*pll_set)(struct dvb_frontend *fe, struct dvb_frontend_parameters* params);
};
struct dib_fe_xfer_ops
@@ -41,28 +51,11 @@ struct dib_fe_xfer_ops
int (*tuner_pass_ctrl)(struct dvb_frontend *fe, int onoff, u8 pll_ctrl);
};
-#if defined(CONFIG_DVB_DIB3000MB) || defined(CONFIG_DVB_DIB3000MB_MODULE)
extern struct dvb_frontend* dib3000mb_attach(const struct dib3000_config* config,
struct i2c_adapter* i2c, struct dib_fe_xfer_ops *xfer_ops);
-#else
-static inline struct dvb_frontend* dib3000mb_attach(const struct dib3000_config* config,
- struct i2c_adapter* i2c, struct dib_fe_xfer_ops *xfer_ops)
-{
- printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__);
- return NULL;
-}
-#endif // CONFIG_DVB_DIB3000MB
-#if defined(CONFIG_DVB_DIB3000MC) || defined(CONFIG_DVB_DIB3000MC_MODULE)
extern struct dvb_frontend* dib3000mc_attach(const struct dib3000_config* config,
struct i2c_adapter* i2c, struct dib_fe_xfer_ops *xfer_ops);
-#else
-static inline struct dvb_frontend* dib3000mc_attach(const struct dib3000_config* config,
- struct i2c_adapter* i2c, struct dib_fe_xfer_ops *xfer_ops)
-{
- printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__);
- return NULL;
-}
-#endif // CONFIG_DVB_DIB3000MC
+extern int dib3000mc_set_agc_config(struct dvb_frontend *fe, const struct dib3000p_agc_config *agc);
#endif // DIB3000_H
OpenPOWER on IntegriCloud