Commit 74c375cb authored by Fabio Estevam's avatar Fabio Estevam Committed by Mark Brown

ASoC: ad193x: Use IS_ENABLED() macro

Using the IS_ENABLED() macro can make the code shorter and simpler.
Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 6ce4eac1
...@@ -413,7 +413,7 @@ static struct spi_driver ad193x_spi_driver = { ...@@ -413,7 +413,7 @@ static struct spi_driver ad193x_spi_driver = {
}; };
#endif #endif
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) #if IS_ENABLED(CONFIG_I2C)
static const struct regmap_config ad193x_i2c_regmap_config = { static const struct regmap_config ad193x_i2c_regmap_config = {
.val_bits = 8, .val_bits = 8,
...@@ -470,7 +470,7 @@ static int __init ad193x_modinit(void) ...@@ -470,7 +470,7 @@ static int __init ad193x_modinit(void)
{ {
int ret; int ret;
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) #if IS_ENABLED(CONFIG_I2C)
ret = i2c_add_driver(&ad193x_i2c_driver); ret = i2c_add_driver(&ad193x_i2c_driver);
if (ret != 0) { if (ret != 0) {
printk(KERN_ERR "Failed to register AD193X I2C driver: %d\n", printk(KERN_ERR "Failed to register AD193X I2C driver: %d\n",
...@@ -495,7 +495,7 @@ static void __exit ad193x_modexit(void) ...@@ -495,7 +495,7 @@ static void __exit ad193x_modexit(void)
spi_unregister_driver(&ad193x_spi_driver); spi_unregister_driver(&ad193x_spi_driver);
#endif #endif
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) #if IS_ENABLED(CONFIG_I2C)
i2c_del_driver(&ad193x_i2c_driver); i2c_del_driver(&ad193x_i2c_driver);
#endif #endif
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment