diff options
author | Michal Simek <michal.simek@xilinx.com> | 2020-08-19 10:44:15 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-27 11:20:33 -0400 |
commit | a261fdce381639b93b0efed5d5202c60d92f0e37 (patch) | |
tree | ccab7552de2bad9cbf05d564ec93f7217409624e | |
parent | 67e62c746823329a4a65356ab0fe81dfc2b8784b (diff) | |
download | u-boot-a261fdce381639b93b0efed5d5202c60d92f0e37.tar.gz u-boot-a261fdce381639b93b0efed5d5202c60d92f0e37.tar.xz u-boot-a261fdce381639b93b0efed5d5202c60d92f0e37.zip |
pci: kconfig: Setup proper dependency for PCIE_ROCKCHIP
There is missing dependency for PCIE_ROCKCHIP which selects
PHY_ROCKCHIP_PCIE which directly depends on ARCH_ROCKCHIP.
WARNING: unmet direct dependencies detected for PHY_ROCKCHIP_PCIE
Depends on [n]: ARCH_ROCKCHIP [=n]
Selected by [y]:
- PCIE_ROCKCHIP [=y] && PCI [=y]
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/pci/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig index 06d39df1d3..c19d09bc41 100644 --- a/drivers/pci/Kconfig +++ b/drivers/pci/Kconfig @@ -260,6 +260,7 @@ config PCIE_MEDIATEK config PCIE_ROCKCHIP bool "Enable Rockchip PCIe driver" + depends on ARCH_ROCKCHIP select DM_PCI select PHY_ROCKCHIP_PCIE default y if ROCKCHIP_RK3399 |