diff options
| author | Jonathan Marek <jonathan@marek.ca> | 2024-10-05 10:40:46 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-12-05 14:02:03 +0100 |
| commit | 89dc91e58e44ec2764149e1be10a4fa29c857f43 (patch) | |
| tree | c46c7cf21b6d40dfec2da66a5005b83fda24c599 | |
| parent | 16f2ef1e4882d219fe2b924fd066fbd139b75977 (diff) | |
| download | linux-89dc91e58e44ec2764149e1be10a4fa29c857f43.tar.gz linux-89dc91e58e44ec2764149e1be10a4fa29c857f43.tar.bz2 linux-89dc91e58e44ec2764149e1be10a4fa29c857f43.zip | |
clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650
[ Upstream commit aab8d53711346d5569261aec9702b7579eecf1ab ]
This driver is compatible with both sm8550 and sm8650, fix the Kconfig
entry to reflect that.
Fixes: da1f361c887c ("clk: qcom: videocc-sm8550: Add SM8650 video clock controller")
Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20241005144047.2226-1-jonathan@marek.ca
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
| -rw-r--r-- | drivers/clk/qcom/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig index a3e2a09e2105..4444dafa4e3d 100644 --- a/drivers/clk/qcom/Kconfig +++ b/drivers/clk/qcom/Kconfig @@ -1230,11 +1230,11 @@ config SM_VIDEOCC_8350 config SM_VIDEOCC_8550 tristate "SM8550 Video Clock Controller" depends on ARM64 || COMPILE_TEST - select SM_GCC_8550 + depends on SM_GCC_8550 || SM_GCC_8650 select QCOM_GDSC help Support for the video clock controller on Qualcomm Technologies, Inc. - SM8550 devices. + SM8550 or SM8650 devices. Say Y if you want to support video devices and functionality such as video encode/decode. |
