diff options
Diffstat (limited to 'drivers/media/dvb/frontends')
-rw-r--r-- | drivers/media/dvb/frontends/drxk.h | 12 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/tda18271c2dd.h | 14 |
2 files changed, 26 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/drxk.h b/drivers/media/dvb/frontends/drxk.h index a756e4562fe2..58baf419560c 100644 --- a/drivers/media/dvb/frontends/drxk.h +++ b/drivers/media/dvb/frontends/drxk.h | |||
@@ -29,7 +29,19 @@ struct drxk_config { | |||
29 | const char *microcode_name; | 29 | const char *microcode_name; |
30 | }; | 30 | }; |
31 | 31 | ||
32 | #if defined(CONFIG_DVB_DRXK) || (defined(CONFIG_DVB_DRXK_MODULE) \ | ||
33 | && defined(MODULE)) | ||
32 | extern struct dvb_frontend *drxk_attach(const struct drxk_config *config, | 34 | extern struct dvb_frontend *drxk_attach(const struct drxk_config *config, |
33 | struct i2c_adapter *i2c, | 35 | struct i2c_adapter *i2c, |
34 | struct dvb_frontend **fe_t); | 36 | struct dvb_frontend **fe_t); |
37 | #else | ||
38 | static inline struct dvb_frontend *drxk_attach(const struct drxk_config *config, | ||
39 | struct i2c_adapter *i2c, | ||
40 | struct dvb_frontend **fe_t) | ||
41 | { | ||
42 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | ||
43 | return NULL; | ||
44 | } | ||
45 | #endif | ||
46 | |||
35 | #endif | 47 | #endif |
diff --git a/drivers/media/dvb/frontends/tda18271c2dd.h b/drivers/media/dvb/frontends/tda18271c2dd.h index 492badd50231..5ac2da5fcf19 100644 --- a/drivers/media/dvb/frontends/tda18271c2dd.h +++ b/drivers/media/dvb/frontends/tda18271c2dd.h | |||
@@ -2,4 +2,18 @@ | |||
2 | #define _TDA18271C2DD_H_ | 2 | #define _TDA18271C2DD_H_ |
3 | struct dvb_frontend *tda18271c2dd_attach(struct dvb_frontend *fe, | 3 | struct dvb_frontend *tda18271c2dd_attach(struct dvb_frontend *fe, |
4 | struct i2c_adapter *i2c, u8 adr); | 4 | struct i2c_adapter *i2c, u8 adr); |
5 | |||
6 | #if defined(CONFIG_DVB_TDA18271C2DD) || (defined(CONFIG_DVB_TDA18271C2DD_MODULE) \ | ||
7 | && defined(MODULE)) | ||
8 | struct dvb_frontend *tda18271c2dd_attach(struct dvb_frontend *fe, | ||
9 | struct i2c_adapter *i2c, u8 adr); | ||
10 | #else | ||
11 | static inline struct dvb_frontend *tda18271c2dd_attach(struct dvb_frontend *fe, | ||
12 | struct i2c_adapter *i2c, u8 adr) { | ||
13 | { | ||
14 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | ||
15 | return NULL; | ||
16 | } | ||
17 | #endif | ||
18 | |||
5 | #endif | 19 | #endif |