2011-07-21 06:52:49 +08:00
|
|
|
#ifndef __MT2063_H__
|
|
|
|
#define __MT2063_H__
|
|
|
|
|
|
|
|
#include "dvb_frontend.h"
|
|
|
|
|
|
|
|
struct mt2063_config {
|
|
|
|
u8 tuner_address;
|
|
|
|
u32 refclock;
|
2011-07-21 06:48:59 +08:00
|
|
|
};
|
|
|
|
|
2011-07-21 07:58:25 +08:00
|
|
|
#if defined(CONFIG_MEDIA_TUNER_MT2063) || (defined(CONFIG_MEDIA_TUNER_MT2063_MODULE) && defined(MODULE))
|
|
|
|
struct dvb_frontend *mt2063_attach(struct dvb_frontend *fe,
|
|
|
|
struct mt2063_config *config,
|
|
|
|
struct i2c_adapter *i2c);
|
2011-07-21 06:48:59 +08:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2011-07-21 06:52:49 +08:00
|
|
|
static inline struct dvb_frontend *mt2063_attach(struct dvb_frontend *fe,
|
2011-07-21 07:58:25 +08:00
|
|
|
struct mt2063_config *config,
|
|
|
|
struct i2c_adapter *i2c)
|
2011-07-21 06:48:59 +08:00
|
|
|
{
|
|
|
|
printk(KERN_WARNING "%s: Driver disabled by Kconfig\n", __func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-07-21 22:00:59 +08:00
|
|
|
/* FIXME: Should use the standard DVB attachment interfaces */
|
2011-07-21 09:00:30 +08:00
|
|
|
unsigned int tuner_MT2063_SoftwareShutdown(struct dvb_frontend *fe);
|
|
|
|
unsigned int tuner_MT2063_ClearPowerMaskBits(struct dvb_frontend *fe);
|
|
|
|
|
2011-07-21 07:15:01 +08:00
|
|
|
#endif /* CONFIG_DVB_MT2063 */
|
2011-07-21 06:52:49 +08:00
|
|
|
|
2011-07-21 07:15:01 +08:00
|
|
|
#endif /* __MT2063_H__ */
|