Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6.git] / drivers / media / tuners / mt2063.h
blobe1acfc8e7ae3f20b6fa01d66554d629af9da6c9d
1 #ifndef __MT2063_H__
2 #define __MT2063_H__
4 #include "dvb_frontend.h"
6 struct mt2063_config {
7 u8 tuner_address;
8 u32 refclock;
9 };
11 #if IS_ENABLED(CONFIG_MEDIA_TUNER_MT2063)
12 struct dvb_frontend *mt2063_attach(struct dvb_frontend *fe,
13 struct mt2063_config *config,
14 struct i2c_adapter *i2c);
16 #else
18 static inline struct dvb_frontend *mt2063_attach(struct dvb_frontend *fe,
19 struct mt2063_config *config,
20 struct i2c_adapter *i2c)
22 printk(KERN_WARNING "%s: Driver disabled by Kconfig\n", __func__);
23 return NULL;
26 #endif /* CONFIG_DVB_MT2063 */
28 #endif /* __MT2063_H__ */