Commit 504e76e5 authored by Javier Martinez Canillas's avatar Javier Martinez Canillas Committed by David S. Miller

net/fsl_pq_mdio: use IS_ENABLED() instead of checking for built-in or module

The IS_ENABLED() macro checks if a Kconfig symbol has been enabled either
built-in or as a module, use that macro instead of open coding the same.

Using the macro makes the code more readable by helping abstract away some
of the Kconfig built-in and module enable details.
Signed-off-by: default avatarJavier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 06757786
...@@ -195,7 +195,7 @@ static int fsl_pq_mdio_reset(struct mii_bus *bus) ...@@ -195,7 +195,7 @@ static int fsl_pq_mdio_reset(struct mii_bus *bus)
return 0; return 0;
} }
#if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE) #if IS_ENABLED(CONFIG_GIANFAR)
/* /*
* Return the TBIPA address, starting from the address * Return the TBIPA address, starting from the address
* of the mapped GFAR MDIO registers (struct gfar) * of the mapped GFAR MDIO registers (struct gfar)
...@@ -228,7 +228,7 @@ static uint32_t __iomem *get_etsec_tbipa(void __iomem *p) ...@@ -228,7 +228,7 @@ static uint32_t __iomem *get_etsec_tbipa(void __iomem *p)
} }
#endif #endif
#if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE) #if IS_ENABLED(CONFIG_UCC_GETH)
/* /*
* Return the TBIPAR address for a QE MDIO node, starting from the address * Return the TBIPAR address for a QE MDIO node, starting from the address
* of the mapped MII registers (struct fsl_pq_mii) * of the mapped MII registers (struct fsl_pq_mii)
...@@ -306,7 +306,7 @@ static void ucc_configure(phys_addr_t start, phys_addr_t end) ...@@ -306,7 +306,7 @@ static void ucc_configure(phys_addr_t start, phys_addr_t end)
#endif #endif
static const struct of_device_id fsl_pq_mdio_match[] = { static const struct of_device_id fsl_pq_mdio_match[] = {
#if defined(CONFIG_GIANFAR) || defined(CONFIG_GIANFAR_MODULE) #if IS_ENABLED(CONFIG_GIANFAR)
{ {
.compatible = "fsl,gianfar-tbi", .compatible = "fsl,gianfar-tbi",
.data = &(struct fsl_pq_mdio_data) { .data = &(struct fsl_pq_mdio_data) {
...@@ -344,7 +344,7 @@ static const struct of_device_id fsl_pq_mdio_match[] = { ...@@ -344,7 +344,7 @@ static const struct of_device_id fsl_pq_mdio_match[] = {
}, },
}, },
#endif #endif
#if defined(CONFIG_UCC_GETH) || defined(CONFIG_UCC_GETH_MODULE) #if IS_ENABLED(CONFIG_UCC_GETH)
{ {
.compatible = "fsl,ucc-mdio", .compatible = "fsl,ucc-mdio",
.data = &(struct fsl_pq_mdio_data) { .data = &(struct fsl_pq_mdio_data) {
......
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