2015-08-05 17:22:42 +02:00
|
|
|
#ifndef _TDA18271C2DD_H_
|
|
|
|
#define _TDA18271C2DD_H_
|
2024-09-19 10:54:57 +02:00
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
|
|
|
|
#if defined(CONFIG_DVB_TDA18271C2DD) || \
|
2015-08-05 17:22:42 +02:00
|
|
|
(defined(CONFIG_DVB_TDA18271C2DD_MODULE) \
|
|
|
|
&& defined(MODULE))
|
|
|
|
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,
|
|
|
|
struct i2c_adapter *i2c, u8 adr)
|
|
|
|
{
|
|
|
|
pr_warn("%s: driver disabled by Kconfig\n", __func__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|