#ifndef STV0299_H
#define STV0299_H
#include <linux/dvb/frontend.h>
#include <media/dvb_frontend.h>
#define STV0299_LOCKOUTPUT_0 …
#define STV0299_LOCKOUTPUT_1 …
#define STV0299_LOCKOUTPUT_CF …
#define STV0299_LOCKOUTPUT_LK …
#define STV0299_VOLT13_OP0 …
#define STV0299_VOLT13_OP1 …
struct stv0299_config
{ … };
#if IS_REACHABLE(CONFIG_DVB_STV0299)
extern struct dvb_frontend *stv0299_attach(const struct stv0299_config *config,
struct i2c_adapter *i2c);
#else
static inline struct dvb_frontend *stv0299_attach(const struct stv0299_config *config,
struct i2c_adapter *i2c)
{
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
return NULL;
}
#endif
static inline int stv0299_writereg(struct dvb_frontend *fe, u8 reg, u8 val) { … }
#endif