diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2016-05-18 16:11:28 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2016-05-27 11:27:23 -0400 |
commit | 5219d6530ef0bca37bd8c4c637908638ce205ff9 (patch) | |
tree | 179e2f2b9515fc26f2d583f1248ff4229522fafc /drivers/ata/pata_marvell.c | |
parent | d2abf98e1feecfe333c2077f541986dedbe47cdb (diff) | |
download | linux-5219d6530ef0bca37bd8c4c637908638ce205ff9.tar.bz2 |
ata: 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.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/pata_marvell.c')
-rw-r--r-- | drivers/ata/pata_marvell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/pata_marvell.c b/drivers/ata/pata_marvell.c index ae9feb1ba8f7..ff468a6fd8dd 100644 --- a/drivers/ata/pata_marvell.c +++ b/drivers/ata/pata_marvell.c @@ -146,7 +146,7 @@ static int marvell_init_one (struct pci_dev *pdev, const struct pci_device_id *i if (pdev->device == 0x6101) ppi[1] = &ata_dummy_port_info; -#if defined(CONFIG_SATA_AHCI) || defined(CONFIG_SATA_AHCI_MODULE) +#if IS_ENABLED(CONFIG_SATA_AHCI) if (!marvell_pata_active(pdev)) { printk(KERN_INFO DRV_NAME ": PATA port not active, deferring to AHCI driver.\n"); return -ENODEV; |