Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 92cd24fe authored by Andrew de Quincey's avatar Andrew de Quincey Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (4610): Add tua6100 config wrapper



I had forgotten to add the wrapper round the tua6100_attach function if its
disabled in Kconfig

Signed-off-by: default avatarAndrew de Quincey <adq_dvb@lidskialf.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 141276b5
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -34,14 +34,14 @@
#include <linux/i2c.h>
#include "dvb_frontend.h"

/**
 * Attach a tua6100 pll to the supplied frontend structure.
 *
 * @param fe Frontend to attach to.
 * @param addr i2c address of the pll.
 * @param i2c i2c adapter to use.
 * @return FE pointer on success, NULL on failure.
 */
#if defined(CONFIG_DVB_TUA6100) || defined(CONFIG_DVB_TUA6100_MODULE)
extern struct dvb_frontend *tua6100_attach(struct dvb_frontend *fe, int addr, struct i2c_adapter *i2c);
#else
static inline struct dvb_frontend* tua6100_attach(struct dvb_frontend *fe, int addr, struct i2c_adapter *i2c)
{
	printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__);
	return NULL;
}
#endif // CONFIG_DVB_TUA6100

#endif