diff options
author | Arnd Bergmann <arnd@arndb.de> | 2024-07-19 10:27:47 +0300 |
---|---|---|
committer | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2024-07-19 10:49:24 +0300 |
commit | 1a8c67a8b21e26843d5641c55f48130b3e323ce8 (patch) | |
tree | b1a13ab8d3181f70f2b61672b5ca4eb6f581b2c7 /arch | |
parent | ed70aaac7c359540d3d8332827fa60b6a45e15f2 (diff) | |
download | linux-1a8c67a8b21e26843d5641c55f48130b3e323ce8.tar.xz |
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 <arnd@arndb.de>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm64/Kconfig.platforms | 2 |
1 files changed, 1 insertions, 1 deletions
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. |