[media] use IS_ENABLED() macro
This patch introduces the use of IS_ENABLED() macro. For example, replacing: #if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE)) with: #if IS_ENABLED(CONFIG_I2C) All changes made by this patch respect the same replacement pattern. Reported-by: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com> Acked-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
ffe4db06fd
commit
7b34be71db
@@ -47,7 +47,7 @@ struct zl10353_config
|
||||
u8 pll_0; /* default: 0x15 */
|
||||
};
|
||||
|
||||
#if defined(CONFIG_DVB_ZL10353) || (defined(CONFIG_DVB_ZL10353_MODULE) && defined(MODULE))
|
||||
#if IS_ENABLED(CONFIG_DVB_ZL10353)
|
||||
extern struct dvb_frontend* zl10353_attach(const struct zl10353_config *config,
|
||||
struct i2c_adapter *i2c);
|
||||
#else
|
||||
|
Reference in New Issue
Block a user