All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: qcom: sm8450: Fix DSIn PHY compatible
@ 2023-01-23 20:05 Konrad Dybcio
  2023-01-24  8:27 ` Neil Armstrong
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Konrad Dybcio @ 2023-01-23 20:05 UTC (permalink / raw)
  To: linux-arm-msm, andersson, agross, krzysztof.kozlowski
  Cc: marijn.suijten, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Dmitry Baryshkov, devicetree, linux-kernel

Use the correct compatible so that the driver can probe properly.

Fixes: a6dd1206e45a ("arm64: dts: qcom: sm8450: add display hardware devices")
Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---
 arch/arm64/boot/dts/qcom/sm8450.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
index d66dcd8fe61f..8d85a3139849 100644
--- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
@@ -2873,7 +2873,7 @@ opp-358000000 {
 			};
 
 			mdss_dsi0_phy: phy@ae94400 {
-				compatible = "qcom,dsi-phy-5nm-8450";
+				compatible = "qcom,sm8450-dsi-phy-5nm";
 				reg = <0 0x0ae94400 0 0x200>,
 				      <0 0x0ae94600 0 0x280>,
 				      <0 0x0ae94900 0 0x260>;
@@ -2946,7 +2946,7 @@ mdss_dsi1_out: endpoint {
 			};
 
 			mdss_dsi1_phy: phy@ae96400 {
-				compatible = "qcom,dsi-phy-5nm-8450";
+				compatible = "qcom,sm8450-dsi-phy-5nm";
 				reg = <0 0x0ae96400 0 0x200>,
 				      <0 0x0ae96600 0 0x280>,
 				      <0 0x0ae96900 0 0x260>;
-- 
2.39.1


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

* Re: [PATCH] arm64: dts: qcom: sm8450: Fix DSIn PHY compatible
  2023-01-23 20:05 [PATCH] arm64: dts: qcom: sm8450: Fix DSIn PHY compatible Konrad Dybcio
@ 2023-01-24  8:27 ` Neil Armstrong
  2023-01-27 16:29 ` Neil Armstrong
  2023-02-09  4:23 ` Bjorn Andersson
  2 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2023-01-24  8:27 UTC (permalink / raw)
  To: Konrad Dybcio, linux-arm-msm, andersson, agross, krzysztof.kozlowski
  Cc: marijn.suijten, Rob Herring, Krzysztof Kozlowski,
	Dmitry Baryshkov, devicetree, linux-kernel

On 23/01/2023 21:05, Konrad Dybcio wrote:
> Use the correct compatible so that the driver can probe properly.
> 
> Fixes: a6dd1206e45a ("arm64: dts: qcom: sm8450: add display hardware devices")
> Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
> ---
>   arch/arm64/boot/dts/qcom/sm8450.dtsi | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
> index d66dcd8fe61f..8d85a3139849 100644
> --- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
> @@ -2873,7 +2873,7 @@ opp-358000000 {
>   			};
>   
>   			mdss_dsi0_phy: phy@ae94400 {
> -				compatible = "qcom,dsi-phy-5nm-8450";
> +				compatible = "qcom,sm8450-dsi-phy-5nm";
>   				reg = <0 0x0ae94400 0 0x200>,
>   				      <0 0x0ae94600 0 0x280>,
>   				      <0 0x0ae94900 0 0x260>;
> @@ -2946,7 +2946,7 @@ mdss_dsi1_out: endpoint {
>   			};
>   
>   			mdss_dsi1_phy: phy@ae96400 {
> -				compatible = "qcom,dsi-phy-5nm-8450";
> +				compatible = "qcom,sm8450-dsi-phy-5nm";
>   				reg = <0 0x0ae96400 0 0x200>,
>   				      <0 0x0ae96600 0 0x280>,
>   				      <0 0x0ae96900 0 0x260>;

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

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

* Re: [PATCH] arm64: dts: qcom: sm8450: Fix DSIn PHY compatible
  2023-01-23 20:05 [PATCH] arm64: dts: qcom: sm8450: Fix DSIn PHY compatible Konrad Dybcio
  2023-01-24  8:27 ` Neil Armstrong
@ 2023-01-27 16:29 ` Neil Armstrong
  2023-02-09  4:23 ` Bjorn Andersson
  2 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2023-01-27 16:29 UTC (permalink / raw)
  To: Konrad Dybcio, linux-arm-msm, andersson, agross, krzysztof.kozlowski
  Cc: marijn.suijten, Rob Herring, Krzysztof Kozlowski,
	Dmitry Baryshkov, devicetree, linux-kernel

On 23/01/2023 21:05, Konrad Dybcio wrote:
> Use the correct compatible so that the driver can probe properly.
> 
> Fixes: a6dd1206e45a ("arm64: dts: qcom: sm8450: add display hardware devices")
> Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
> ---
>   arch/arm64/boot/dts/qcom/sm8450.dtsi | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
> index d66dcd8fe61f..8d85a3139849 100644
> --- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
> @@ -2873,7 +2873,7 @@ opp-358000000 {
>   			};
>   
>   			mdss_dsi0_phy: phy@ae94400 {
> -				compatible = "qcom,dsi-phy-5nm-8450";
> +				compatible = "qcom,sm8450-dsi-phy-5nm";
>   				reg = <0 0x0ae94400 0 0x200>,
>   				      <0 0x0ae94600 0 0x280>,
>   				      <0 0x0ae94900 0 0x260>;
> @@ -2946,7 +2946,7 @@ mdss_dsi1_out: endpoint {
>   			};
>   
>   			mdss_dsi1_phy: phy@ae96400 {
> -				compatible = "qcom,dsi-phy-5nm-8450";
> +				compatible = "qcom,sm8450-dsi-phy-5nm";
>   				reg = <0 0x0ae96400 0 0x200>,
>   				      <0 0x0ae96600 0 0x280>,
>   				      <0 0x0ae96900 0 0x260>;

Tested-by: Neil Armstrong <neil.armstrong@linaro.org> # on HDK8450

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

* Re: [PATCH] arm64: dts: qcom: sm8450: Fix DSIn PHY compatible
  2023-01-23 20:05 [PATCH] arm64: dts: qcom: sm8450: Fix DSIn PHY compatible Konrad Dybcio
  2023-01-24  8:27 ` Neil Armstrong
  2023-01-27 16:29 ` Neil Armstrong
@ 2023-02-09  4:23 ` Bjorn Andersson
  2 siblings, 0 replies; 4+ messages in thread
From: Bjorn Andersson @ 2023-02-09  4:23 UTC (permalink / raw)
  To: agross, krzysztof.kozlowski, Konrad Dybcio, linux-arm-msm
  Cc: Dmitry Baryshkov, Rob Herring, marijn.suijten, devicetree,
	linux-kernel, Krzysztof Kozlowski

On Mon, 23 Jan 2023 21:05:52 +0100, Konrad Dybcio wrote:
> Use the correct compatible so that the driver can probe properly.
> 
> 

Applied, thanks!

[1/1] arm64: dts: qcom: sm8450: Fix DSIn PHY compatible
      commit: cce9c1d0b0168a08a3fe49bed6ac78731c69914c

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

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

end of thread, other threads:[~2023-02-09  4:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-23 20:05 [PATCH] arm64: dts: qcom: sm8450: Fix DSIn PHY compatible Konrad Dybcio
2023-01-24  8:27 ` Neil Armstrong
2023-01-27 16:29 ` Neil Armstrong
2023-02-09  4:23 ` Bjorn Andersson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.