diff options
Diffstat (limited to 'drivers/media/dvb/frontends/sp887x.h')
-rw-r--r-- | drivers/media/dvb/frontends/sp887x.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/sp887x.h b/drivers/media/dvb/frontends/sp887x.h index c44b0ebdf1e2..cab7ea644dfa 100644 --- a/drivers/media/dvb/frontends/sp887x.h +++ b/drivers/media/dvb/frontends/sp887x.h | |||
@@ -17,7 +17,16 @@ struct sp887x_config | |||
17 | int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name); | 17 | int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name); |
18 | }; | 18 | }; |
19 | 19 | ||
20 | #if defined(CONFIG_DVB_SP887X) || defined(CONFIG_DVB_SP887X_MODULE) | ||
20 | extern struct dvb_frontend* sp887x_attach(const struct sp887x_config* config, | 21 | extern struct dvb_frontend* sp887x_attach(const struct sp887x_config* config, |
21 | struct i2c_adapter* i2c); | 22 | struct i2c_adapter* i2c); |
23 | #else | ||
24 | static inline struct dvb_frontend* sp887x_attach(const struct sp887x_config* config, | ||
25 | struct i2c_adapter* i2c) | ||
26 | { | ||
27 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__); | ||
28 | return NULL; | ||
29 | } | ||
30 | #endif // CONFIG_DVB_SP887X | ||
22 | 31 | ||
23 | #endif // SP887X_H | 32 | #endif // SP887X_H |