2011-07-04 00:36:17 +08:00
|
|
|
#ifndef _TDA18271C2DD_H_
|
|
|
|
#define _TDA18271C2DD_H_
|
2013-03-22 03:11:54 +08:00
|
|
|
|
|
|
|
#include <linux/kconfig.h>
|
|
|
|
|
2015-02-19 01:12:42 +08:00
|
|
|
#if IS_REACHABLE(CONFIG_DVB_TDA18271C2DD)
|
2011-07-12 01:56:30 +08:00
|
|
|
struct dvb_frontend *tda18271c2dd_attach(struct dvb_frontend *fe,
|
|
|
|
struct i2c_adapter *i2c, u8 adr);
|
|
|
|
#else
|
|
|
|
static inline struct dvb_frontend *tda18271c2dd_attach(struct dvb_frontend *fe,
|
2011-07-12 02:47:40 +08:00
|
|
|
struct i2c_adapter *i2c, u8 adr)
|
2011-07-12 01:56:30 +08:00
|
|
|
{
|
|
|
|
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-07-04 00:36:17 +08:00
|
|
|
#endif
|