diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2023-07-25 17:47:43 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-07-25 21:23:57 +0100 |
commit | 6b677c1ae8e4096c84fbcbe1b7fd300dab0b381b (patch) | |
tree | 23844edd0967d181944ba6b13e09c221c5d200f0 /drivers/regulator/Kconfig | |
parent | 269cb04b601dd8c35bbee180a9800335b93111fb (diff) | |
download | linux-stable-6b677c1ae8e4096c84fbcbe1b7fd300dab0b381b.tar.gz linux-stable-6b677c1ae8e4096c84fbcbe1b7fd300dab0b381b.tar.bz2 linux-stable-6b677c1ae8e4096c84fbcbe1b7fd300dab0b381b.zip |
regulator: REGULATOR_QCOM_REFGEN should depend on ARCH_QCOM
The Qualcomm MMIO-mapped reference voltage regulator is only present on
Qualcomm SoCs. Hence add a dependency on ARCH_QCOM, to prevent asking
the user about this driver when configuring a kernel without Qualcomm
SoC support.
Fixes: 7cbfbe23796086fd ("regulator: Introduce Qualcomm REFGEN regulator driver")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/60938ed138c9331ba3d2891fbd3b3d6644d3fbdc.1690300012.git.geert+renesas@glider.be
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/Kconfig')
-rw-r--r-- | drivers/regulator/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig index 542a7b427994..94f44736473e 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig @@ -1001,6 +1001,7 @@ config REGULATOR_PWM config REGULATOR_QCOM_REFGEN tristate "Qualcomm REFGEN regulator driver" + depends on ARCH_QCOM || COMPILE_TEST depends on HAS_IOMEM depends on REGMAP help |