From: Geert Uytterhoeven Date: Tue, 3 Jan 2017 18:09:47 +0000 (+0100) Subject: ata: AHCI and other non-SFF native drivers should depend on HAS_DMA X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b16a0168c41f9379476b5b5585071319078c542d;p=linux.git ata: AHCI and other non-SFF native drivers should depend on HAS_DMA If NO_DMA=y: ERROR: "bad_dma_ops" [drivers/ata/libahci_platform.ko] undefined! ERROR: "dmam_alloc_coherent" [drivers/ata/libahci.ko] undefined! Add a block dependency on HAS_DMA to fix this. Signed-off-by: Geert Uytterhoeven Signed-off-by: Tejun Heo --- diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig index 5d16fc4fa46c7..38318aaf29d35 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -80,6 +80,8 @@ config SATA_PMP This option adds support for SATA Port Multipliers (the SATA version of an ethernet hub, or SAS expander). +if HAS_DMA + comment "Controllers with non-SFF native interface" config SATA_AHCI @@ -232,6 +234,8 @@ config SATA_SIL24 If unsure, say N. +endif # HAS_DMA + config ATA_SFF bool "ATA SFF support (for legacy IDE and PATA)" default y