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

Commit c071fab4 authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (4734): Tda826x: fix frontend selection for dvb_attach

parent fc13d929
Loading
Loading
Loading
Loading
+16 −3
Original line number Diff line number Diff line
@@ -35,6 +35,19 @@
 * @param has_loopthrough Set to 1 if the card has a loopthrough RF connector.
 * @return FE pointer on success, NULL on failure.
 */
extern struct dvb_frontend *tda826x_attach(struct dvb_frontend *fe, int addr, struct i2c_adapter *i2c, int has_loopthrough);

#endif
#if defined(CONFIG_DVB_TDA826X) || defined(CONFIG_DVB_TDA826X_MODULE)
extern struct dvb_frontend* tda826x_attach(struct dvb_frontend *fe, int addr,
					   struct i2c_adapter *i2c,
					   int has_loopthrough);
#else
static inline struct dvb_frontend* tda826x_attach(struct dvb_frontend *fe,
						  int addr,
						  struct i2c_adapter *i2c,
						  int has_loopthrough)
{
	printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__);
	return NULL;
}
#endif // CONFIG_DVB_TDA826X

#endif // __DVB_TDA826X_H__