#ifndef _ISL6421_H
#define _ISL6421_H
#include <linux/dvb/frontend.h>
#define ISL6421_OLF1 …
#define ISL6421_EN1 …
#define ISL6421_VSEL1 …
#define ISL6421_LLC1 …
#define ISL6421_ENT1 …
#define ISL6421_ISEL1 …
#define ISL6421_DCL …
#if IS_REACHABLE(CONFIG_DVB_ISL6421)
extern struct dvb_frontend *isl6421_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, u8 i2c_addr,
u8 override_set, u8 override_clear, bool override_tone);
#else
static inline struct dvb_frontend *isl6421_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, u8 i2c_addr,
u8 override_set, u8 override_clear, bool override_tone)
{
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
return NULL;
}
#endif
#endif