[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>
This commit is contained in:
parent
4937ba94a0
commit
c43e651205
2 changed files with 4 additions and 6 deletions
|
@ -63,9 +63,7 @@ struct lgdt3306a_config {
|
||||||
int xtalMHz;
|
int xtalMHz;
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_DVB_LGDT3306A) || (defined(CONFIG_DVB_LGDT3306A_MODULE) && \
|
#if IS_ENABLED(CONFIG_DVB_LGDT3306A)
|
||||||
defined(MODULE))
|
|
||||||
extern
|
|
||||||
struct dvb_frontend *lgdt3306a_attach(const struct lgdt3306a_config *config,
|
struct dvb_frontend *lgdt3306a_attach(const struct lgdt3306a_config *config,
|
||||||
struct i2c_adapter *i2c_adap);
|
struct i2c_adapter *i2c_adap);
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Reference in a new issue