diff options
Diffstat (limited to 'drivers/media/dvb/frontends/bcm3510.h')
-rw-r--r-- | drivers/media/dvb/frontends/bcm3510.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/bcm3510.h b/drivers/media/dvb/frontends/bcm3510.h index 80f5d0953d02..6dfa839a7022 100644 --- a/drivers/media/dvb/frontends/bcm3510.h +++ b/drivers/media/dvb/frontends/bcm3510.h | |||
@@ -34,7 +34,16 @@ struct bcm3510_config | |||
34 | int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name); | 34 | int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name); |
35 | }; | 35 | }; |
36 | 36 | ||
37 | #if defined(CONFIG_DVB_BCM3510) || defined(CONFIG_DVB_BCM3510_MODULE) | ||
37 | extern struct dvb_frontend* bcm3510_attach(const struct bcm3510_config* config, | 38 | extern struct dvb_frontend* bcm3510_attach(const struct bcm3510_config* config, |
38 | struct i2c_adapter* i2c); | 39 | struct i2c_adapter* i2c); |
40 | #else | ||
41 | static inline struct dvb_frontend* bcm3510_attach(const struct bcm3510_config* config, | ||
42 | struct i2c_adapter* i2c) | ||
43 | { | ||
44 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__); | ||
45 | return NULL; | ||
46 | } | ||
47 | #endif // CONFIG_DVB_BCM3510 | ||
39 | 48 | ||
40 | #endif | 49 | #endif |