diff options
Diffstat (limited to 'drivers/media/dvb/frontends/lgdt330x.h')
-rw-r--r-- | drivers/media/dvb/frontends/lgdt330x.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/lgdt330x.h b/drivers/media/dvb/frontends/lgdt330x.h index bad903c6f0f8..3f96b485584c 100644 --- a/drivers/media/dvb/frontends/lgdt330x.h +++ b/drivers/media/dvb/frontends/lgdt330x.h | |||
@@ -52,8 +52,17 @@ struct lgdt330x_config | |||
52 | int clock_polarity_flip; | 52 | int clock_polarity_flip; |
53 | }; | 53 | }; |
54 | 54 | ||
55 | #if defined(CONFIG_DVB_LGDT330X) || defined(CONFIG_DVB_LGDT330X_MODULE) | ||
55 | extern struct dvb_frontend* lgdt330x_attach(const struct lgdt330x_config* config, | 56 | extern struct dvb_frontend* lgdt330x_attach(const struct lgdt330x_config* config, |
56 | struct i2c_adapter* i2c); | 57 | struct i2c_adapter* i2c); |
58 | #else | ||
59 | static inline struct dvb_frontend* lgdt330x_attach(const struct lgdt330x_config* config, | ||
60 | struct i2c_adapter* i2c) | ||
61 | { | ||
62 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __FUNCTION__); | ||
63 | return NULL; | ||
64 | } | ||
65 | #endif // CONFIG_DVB_LGDT330X | ||
57 | 66 | ||
58 | #endif /* LGDT330X_H */ | 67 | #endif /* LGDT330X_H */ |
59 | 68 | ||