aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/lgdt3306a.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>2014-10-28 10:56:10 -0200
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-03-03 10:34:12 -0300
commitc43e6512058d21f8c2b73856cc2c7f32b032ccdc (patch)
tree8bc5851d90c9cd369fe35921d94a626505b41b0f /drivers/media/dvb-frontends/lgdt3306a.h
parent[media] lgdt3306a: Use hexadecimal values in lowercase (diff)
downloadlinux-dev-c43e6512058d21f8c2b73856cc2c7f32b032ccdc.tar.xz
linux-dev-c43e6512058d21f8c2b73856cc2c7f32b032ccdc.zip
[media] lgdt3306a: Use IS_ENABLED() for attach function
Simplify the check if CONFIG_DVB_LGDT3306A is enabled, use the IS_ENABLED() macro, just like the other frontend modules. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/lgdt3306a.h')
-rw-r--r--drivers/media/dvb-frontends/lgdt3306a.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/media/dvb-frontends/lgdt3306a.h b/drivers/media/dvb-frontends/lgdt3306a.h
index 9d97df8f0969..9e848b1e506e 100644
--- a/drivers/media/dvb-frontends/lgdt3306a.h
+++ b/drivers/media/dvb-frontends/lgdt3306a.h
@@ -63,15 +63,13 @@ struct lgdt3306a_config {
int xtalMHz;
};
-#if defined(CONFIG_DVB_LGDT3306A) || (defined(CONFIG_DVB_LGDT3306A_MODULE) && \
- defined(MODULE))
-extern
+#if IS_ENABLED(CONFIG_DVB_LGDT3306A)
struct dvb_frontend *lgdt3306a_attach(const struct lgdt3306a_config *config,
- struct i2c_adapter *i2c_adap);
+ struct i2c_adapter *i2c_adap);
#else
static inline
struct dvb_frontend *lgdt3306a_attach(const struct lgdt3306a_config *config,
- struct i2c_adapter *i2c_adap)
+ struct i2c_adapter *i2c_adap)
{
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
return NULL;