tda18271c2dd.h 465 字节
Newer Older
1 2
#ifndef _TDA18271C2DD_H_
#define _TDA18271C2DD_H_
3 4 5 6

#include <linux/kconfig.h>

#if IS_ENABLED(CONFIG_DVB_TDA18271C2DD)
7 8 9 10
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,
11
					 struct i2c_adapter *i2c, u8 adr)
12 13 14 15 16 17
{
        printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
        return NULL;
}
#endif

18
#endif