diff options
| author | Pali Rohár <[email protected]> | 2021-08-15 16:27:36 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-09-01 19:25:37 -0400 |
| commit | 20aa320a4f546b90432cdaa88e7c3cc3d970b3d7 (patch) | |
| tree | 87a12279b5346cf988c7def3ad5fb0d88791049a | |
| parent | 223c44904d86a14d6c17e73696186c402e9ba958 (diff) | |
ata: ahci-pci: Fix dependency on DM_PCI
File drivers/ata/ahci-pci.c calls function ahci_probe_scsi_pci() which is
compiled only when DM_PCI is enabled. So add missing dependency into
Kconfig.
Signed-off-by: Pali Rohár <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
| -rw-r--r-- | drivers/ata/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig index 6f0b7723836..0c1490a9f90 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -36,6 +36,7 @@ menu "SATA/SCSI device support" config AHCI_PCI bool "Support for PCI-based AHCI controller" + depends on DM_PCI depends on DM_SCSI help Enables support for the PCI-based AHCI controller. |
