summaryrefslogtreecommitdiff
path: root/drivers/media/dvb/frontends/tda18271c2dd.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2011-07-11 17:56:30 (GMT)
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-07-27 20:55:52 (GMT)
commitfd0b0814a4ac6003d84042964c0c2923435539cd (patch)
treef7762918d185adbec07851b3d4155a37124b694e /drivers/media/dvb/frontends/tda18271c2dd.h
parentf165f60d4229ec4f34002f8dcae45a023586c8d7 (diff)
downloadlinux-fsl-qoriq-fd0b0814a4ac6003d84042964c0c2923435539cd.tar.xz
[media] dvb: don't cause missing symbols for drxk/tda18271c2dd
If those demods are unselected, but a bridge driver requires them, produce a runtime message, instead of missing symbols. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/tda18271c2dd.h')
-rw-r--r--drivers/media/dvb/frontends/tda18271c2dd.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/tda18271c2dd.h b/drivers/media/dvb/frontends/tda18271c2dd.h
index 492badd..5ac2da5 100644
--- a/drivers/media/dvb/frontends/tda18271c2dd.h
+++ b/drivers/media/dvb/frontends/tda18271c2dd.h
@@ -2,4 +2,18 @@
#define _TDA18271C2DD_H_
struct dvb_frontend *tda18271c2dd_attach(struct dvb_frontend *fe,
struct i2c_adapter *i2c, u8 adr);
+
+#if defined(CONFIG_DVB_TDA18271C2DD) || (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) {
+{
+ printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
+ return NULL;
+}
+#endif
+
#endif