diff options
author | Satya Priya Kakitapalli <[email protected]> | 2024-08-13 14:28:46 +0530 |
---|---|---|
committer | Bjorn Andersson <[email protected]> | 2024-08-15 14:14:55 -0500 |
commit | 82ceaf6bcd7c7d01049c13f2461cc7830af41d53 (patch) | |
tree | 5271b16602060668a98af84aff50ee04750e2c40 | |
parent | bab0c7a0bc586e736b7cd2aac8e6391709a70ef2 (diff) |
clk: qcom: Fix SM_CAMCC_8150 dependencies
SM_CAMCC_8150 depends on SM_GCC_8150, which inturn depends on ARM64.
Hence add the dependency to avoid below kernel-bot warning.
WARNING: unmet direct dependencies detected for SM_GCC_8150
Depends on [n]: COMMON_CLK [=y] && COMMON_CLK_QCOM [=y] && (ARM64 || COMPILE_TEST [=n])
Selected by [y]:
- SM_CAMCC_8150 [=y] && COMMON_CLK [=y] && COMMON_CLK_QCOM [=y]
Fixes: ea73b7aceff6 ("clk: qcom: Add camera clock controller driver for SM8150")
Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Signed-off-by: Satya Priya Kakitapalli <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Bjorn Andersson <[email protected]>
-rw-r--r-- | drivers/clk/qcom/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig index e110a57ae439..a3e2a09e2105 100644 --- a/drivers/clk/qcom/Kconfig +++ b/drivers/clk/qcom/Kconfig @@ -836,6 +836,7 @@ config SM_CAMCC_7150 config SM_CAMCC_8150 tristate "SM8150 Camera Clock Controller" + depends on ARM64 || COMPILE_TEST select SM_GCC_8150 help Support for the camera clock controller on Qualcomm Technologies, Inc |