2011-07-20 22:52:49 +00:00
|
|
|
#ifndef __MT2063_H__
|
|
|
|
#define __MT2063_H__
|
|
|
|
|
|
|
|
#include "dvb_frontend.h"
|
|
|
|
|
|
|
|
struct mt2063_config {
|
|
|
|
u8 tuner_address;
|
|
|
|
u32 refclock;
|
2011-07-20 22:48:59 +00:00
|
|
|
};
|
|
|
|
|
2013-01-20 04:32:56 +00:00
|
|
|
#if IS_ENABLED(CONFIG_MEDIA_TUNER_MT2063)
|
2011-07-20 23:58:25 +00:00
|
|
|
struct dvb_frontend *mt2063_attach(struct dvb_frontend *fe,
|
|
|
|
struct mt2063_config *config,
|
|
|
|
struct i2c_adapter *i2c);
|
2011-07-20 22:48:59 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2011-07-20 22:52:49 +00:00
|
|
|
static inline struct dvb_frontend *mt2063_attach(struct dvb_frontend *fe,
|
2011-07-20 23:58:25 +00:00
|
|
|
struct mt2063_config *config,
|
|
|
|
struct i2c_adapter *i2c)
|
2011-07-20 22:48:59 +00:00
|
|
|
{
|
|
|
|
printk(KERN_WARNING "%s: Driver disabled by Kconfig\n", __func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-07-20 23:15:01 +00:00
|
|
|
#endif /* CONFIG_DVB_MT2063 */
|
2011-07-20 22:52:49 +00:00
|
|
|
|
2011-07-20 23:15:01 +00:00
|
|
|
#endif /* __MT2063_H__ */
|