linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650
@ 2024-10-05 14:40 Jonathan Marek
  2024-10-06 17:32 ` Dmitry Baryshkov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jonathan Marek @ 2024-10-05 14:40 UTC (permalink / raw)
  To: linux-arm-msm
  Cc: Bjorn Andersson, Michael Turquette, Stephen Boyd,
	Dmitry Baryshkov, Jagadeesh Kona, open list:COMMON CLK FRAMEWORK,
	open list

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>
---
 drivers/clk/qcom/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig
index a3e2a09e2105b..4444dafa4e3df 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.
 
-- 
2.45.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650
  2024-10-05 14:40 [PATCH] clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650 Jonathan Marek
@ 2024-10-06 17:32 ` Dmitry Baryshkov
  2024-10-07  7:11 ` neil.armstrong
  2024-10-16 20:42 ` Bjorn Andersson
  2 siblings, 0 replies; 4+ messages in thread
From: Dmitry Baryshkov @ 2024-10-06 17:32 UTC (permalink / raw)
  To: Jonathan Marek
  Cc: linux-arm-msm, Bjorn Andersson, Michael Turquette, Stephen Boyd,
	Jagadeesh Kona, open list:COMMON CLK FRAMEWORK, open list

On Sat, Oct 05, 2024 at 10:40:46AM GMT, Jonathan Marek wrote:
> 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>
> ---
>  drivers/clk/qcom/Kconfig | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 

Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

-- 
With best wishes
Dmitry

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650
  2024-10-05 14:40 [PATCH] clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650 Jonathan Marek
  2024-10-06 17:32 ` Dmitry Baryshkov
@ 2024-10-07  7:11 ` neil.armstrong
  2024-10-16 20:42 ` Bjorn Andersson
  2 siblings, 0 replies; 4+ messages in thread
From: neil.armstrong @ 2024-10-07  7:11 UTC (permalink / raw)
  To: Jonathan Marek, linux-arm-msm
  Cc: Bjorn Andersson, Michael Turquette, Stephen Boyd,
	Dmitry Baryshkov, Jagadeesh Kona, open list:COMMON CLK FRAMEWORK,
	open list

On 05/10/2024 16:40, Jonathan Marek wrote:
> 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>
> ---
>   drivers/clk/qcom/Kconfig | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig
> index a3e2a09e2105b..4444dafa4e3df 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.
>   

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650
  2024-10-05 14:40 [PATCH] clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650 Jonathan Marek
  2024-10-06 17:32 ` Dmitry Baryshkov
  2024-10-07  7:11 ` neil.armstrong
@ 2024-10-16 20:42 ` Bjorn Andersson
  2 siblings, 0 replies; 4+ messages in thread
From: Bjorn Andersson @ 2024-10-16 20:42 UTC (permalink / raw)
  To: linux-arm-msm, Jonathan Marek
  Cc: Michael Turquette, Stephen Boyd, Dmitry Baryshkov, Jagadeesh Kona,
	linux-clk, linux-kernel


On Sat, 05 Oct 2024 10:40:46 -0400, Jonathan Marek wrote:
> This driver is compatible with both sm8550 and sm8650, fix the Kconfig
> entry to reflect that.
> 
> 

Applied, thanks!

[1/1] clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650
      commit: aab8d53711346d5569261aec9702b7579eecf1ab

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-10-16 20:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-05 14:40 [PATCH] clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650 Jonathan Marek
2024-10-06 17:32 ` Dmitry Baryshkov
2024-10-07  7:11 ` neil.armstrong
2024-10-16 20:42 ` Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).