diff options
author | Tom Rini <trini@konsulko.com> | 2021-09-16 11:45:03 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-09-16 11:46:44 -0400 |
commit | 36f890f6b08274e426306ab39f57e61ea975f456 (patch) | |
tree | c7242e4dbb686a72e17305b4a9bf725d4e1644a0 /drivers/ata | |
parent | 6674edaabfd271471608146806f5b6540bc76a1b (diff) | |
download | u-boot-36f890f6b08274e426306ab39f57e61ea975f456.tar.gz u-boot-36f890f6b08274e426306ab39f57e61ea975f456.tar.bz2 u-boot-36f890f6b08274e426306ab39f57e61ea975f456.zip |
pci: Fix mismerge with v2021.10-rc4
With legacy PCI code removed and thus DM_PCI also removed, a few places
did not get correctly updated with the merge to next and thus broke.
Remove now extraneous dependencies on DM_PCI.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/ata')
-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 96c7c30375..5639536811 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -36,7 +36,7 @@ menu "SATA/SCSI device support" config AHCI_PCI bool "Support for PCI-based AHCI controller" - depends on DM_PCI + depends on PCI depends on DM_SCSI help Enables support for the PCI-based AHCI controller. |