From: Tom Rini Date: Wed, 10 Feb 2021 02:42:44 +0000 (-0500) Subject: ata: DWC_AHSATA depends on BLK X-Git-Tag: baikal/mips/sdk5.9~34^2^2~104^2~42 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=fa1488e066283e4984481c0f2ecec90900908421;p=uboot.git ata: DWC_AHSATA depends on BLK The dwc ahsata driver is written such that CONFIG_BLK must be enabled, add this as a dependency in Kconfig. Signed-off-by: Tom Rini --- diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig index f2f8275aec..3914f996d9 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -62,6 +62,7 @@ config DWC_AHCI config DWC_AHSATA bool "Enable DWC AHSATA driver support" select LIBATA + depends on BLK help Enable this driver to support the DWC AHSATA SATA controller found in i.MX5 and i.MX6 SoCs.