From: Heinrich Schuchardt Date: Mon, 24 Jul 2023 19:27:26 +0000 (+0200) Subject: spl: CONFIG_SPL_PCI_PNP should depend on CONFIG_SPL_PCI X-Git-Tag: v2025.01-rc5-pxa1908~910^2~1 X-Git-Url: http://git.dujemihanovic.xyz/%22http:/www.sics.se/static/git-favicon.png?a=commitdiff_plain;h=8d2c311ce64939fe829037e4ef7951c3fafaee06;p=u-boot.git spl: CONFIG_SPL_PCI_PNP should depend on CONFIG_SPL_PCI CONFIG_SPL_PCI_PNP=y without CONFIG_SPL_PCI=y makes no sense. Fixes: 32f5e9e5c1a7 ("nvme: pci: Enable for SPL") Signed-off-by: Heinrich Schuchardt Reviewed-by: Tom Rini --- diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig index aca439d921..93e6f50000 100644 --- a/drivers/pci/Kconfig +++ b/drivers/pci/Kconfig @@ -41,7 +41,8 @@ config PCI_PNP Enable PCI memory and I/O space resource allocation and assignment. config SPL_PCI_PNP - bool "Enable Plug & Play support for PCI" + bool "Enable Plug & Play support for PCI in SPL" + depends on SPL_PCI help Enable PCI memory and I/O space resource allocation and assignment.