diff options
author | Tom Rini <trini@konsulko.com> | 2021-04-21 15:32:26 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-05-11 09:14:56 -0400 |
commit | c51f74ba7a6a6f96d45df720387ab636bdebe98d (patch) | |
tree | e67bdcebb863d969fd10a5d7c2ee91253831c5c6 /drivers/ata | |
parent | 8c245fe7eab7b2918de6bbf2e283bced63ecc38f (diff) | |
download | u-boot-c51f74ba7a6a6f96d45df720387ab636bdebe98d.tar.gz u-boot-c51f74ba7a6a6f96d45df720387ab636bdebe98d.tar.bz2 u-boot-c51f74ba7a6a6f96d45df720387ab636bdebe98d.zip |
ata: Make LIBATA means AHCI is enabled mandatory.
The migration deadline for having LIBATA mean that AHCI is also enabled
was v2019.07. As that has long since passed, adjust the Kconfig
dependencies.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/Kconfig | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig index b5a279862a..6f0b772383 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -77,8 +77,9 @@ config DWC_AHSATA_AHCI config FSL_SATA bool "Enable Freescale SATA controller driver support" + select AHCI select LIBATA - select AHCI if BLK + depends on BLK help Enable this driver to support the SATA controller found in some Freescale PowerPC SoCs. @@ -94,8 +95,9 @@ config SATA_MV config SATA_SIL bool "Enable Silicon Image SIL3131 / SIL3132 / SIL3124 SATA driver support" + select AHCI select LIBATA - select AHCI if BLK + depends on BLK help Enable this driver to support the SIL3131, SIL3132 and SIL3124 SATA controllers. |