From: Arnd Bergmann Date: Fri, 19 Jul 2024 07:27:47 +0000 (+0200) Subject: arm64: qcom: don't select HAVE_PWRCTL when PCI=n X-Git-Tag: microblaze-v6.13~611^2 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=1a8c67a8b21e26843d5641c55f48130b3e323ce8;p=linux-2.6-microblaze.git arm64: qcom: don't select HAVE_PWRCTL when PCI=n The new HAVE_PWRCTL option is defined in the PCI subsystem, so selecting it unconditionally when PCI is disabled causes a harmless warning: WARNING: unmet direct dependencies detected for HAVE_PWRCTL Depends on [n]: PCI [=n] Selected by [y]: - ARCH_QCOM [=y] Add 'if PCI' in the qualcomm platform to hide the warning. Fixes: ed70aaac7c35 ("Kconfig: reduce the amount of power sequencing noise") Signed-off-by: Arnd Bergmann Signed-off-by: Bartosz Golaszewski --- diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms index d7837d89564e..8f02bcc67048 100644 --- a/arch/arm64/Kconfig.platforms +++ b/arch/arm64/Kconfig.platforms @@ -267,7 +267,7 @@ config ARCH_QCOM bool "Qualcomm Platforms" select GPIOLIB select PINCTRL - select HAVE_PWRCTL + select HAVE_PWRCTL if PCI help This enables support for the ARMv8 based Qualcomm chipsets.