diff options
author | Oleksandr Suvorov <oleksandr.suvorov@foundries.io> | 2022-08-25 20:03:51 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-31 12:16:01 -0400 |
commit | 6eea9408ac1e2607c231f3049953261b327d7b14 (patch) | |
tree | 676972605e536ddd2adc655095bc82aae5bd029b | |
parent | da223d812bfe01ad745badce45a2d3b4482dc536 (diff) | |
download | u-boot-6eea9408ac1e2607c231f3049953261b327d7b14.zip u-boot-6eea9408ac1e2607c231f3049953261b327d7b14.tar.gz u-boot-6eea9408ac1e2607c231f3049953261b327d7b14.tar.bz2 |
spl: ahci: Fix dependency for SPL_AHCI_PCI
The option SPL_SATA_SUPPORT is renamed to SPL_SATA. Fix the option
name.
Fixes: 73059529b20 ("ata: ahci-pci: Add new option CONFIG_SPL_AHCI_PCI")
Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
Acked-by: Pali Rohár <pali@kernel.org>
-rw-r--r-- | drivers/ata/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig index 7715c40..cd6060d 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -48,7 +48,7 @@ config SPL_AHCI_PCI bool "Support for PCI-based AHCI controller for SPL" depends on SPL depends on SPL_PCI - depends on SPL_SATA_SUPPORT && DM_SCSI + depends on SPL_SATA && DM_SCSI config DWC_AHCI bool "Enable Synopsys DWC AHCI driver support" |