diff options
author | Biju Das <biju.das.jz@bp.renesas.com> | 2023-06-28 20:40:04 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-06-28 23:31:59 +0300 |
commit | e9bd04e52d649c3cfd713b594c5db35cab03c42b (patch) | |
tree | 75e74f2d352a91d64951a5fe52d908928cbbdcc8 /drivers/regulator/Kconfig | |
parent | 54e47eade73046e860634736d2651ddc118ca694 (diff) | |
download | linux-e9bd04e52d649c3cfd713b594c5db35cab03c42b.tar.xz |
regulator: raa215300: Add build dependency with COMMON_CLK
The COMMON_CLK config is not enabled in some of the architectures.
This causes build issues. Fix these issues by adding build dependency.
ERROR: modpost: "clk_unregister_fixed_rate" [drivers/regulator/raa215300.ko] undefined!
ERROR: modpost: "clk_register_fixed_rate" [drivers/regulator/raa215300.ko] undefined!
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202306282012.sPQAuAN7-lkp@intel.com/
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Link: https://lore.kernel.org/r/20230628174004.63984-1-biju.das.jz@bp.renesas.com
Reviewed-by: Geert Uytterhoeven <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 2c2405024ace..a61a1b8a1032 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig @@ -1036,6 +1036,7 @@ config REGULATOR_QCOM_USB_VBUS config REGULATOR_RAA215300 tristate "Renesas RAA215300 driver" select REGMAP_I2C + depends on COMMON_CLK depends on I2C help Support for the Renesas RAA215300 PMIC. |