The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: qcom: glymur: Fix unit-address mismatch for spmi_bus2
@ 2026-05-18 11:16 Gopikrishna Garmidi
  2026-05-18 11:21 ` Krzysztof Kozlowski
  2026-07-07  3:21 ` Bjorn Andersson
  0 siblings, 2 replies; 3+ messages in thread
From: Gopikrishna Garmidi @ 2026-05-18 11:16 UTC (permalink / raw)
  To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Maulik Shah, Dmitry Baryshkov, Pankaj Patil,
	Jyothi Kumar Seerapu
  Cc: Jishnu Prakash, Sibi Sankar, Raviteja Laggyshetty, Taniya Das,
	linux-arm-msm, devicetree, linux-kernel, Gopikrishna Garmidi

The spmi_bus2 node was named spmi@c48000, but its reg property
specifies the base address as 0x0c448000. Fix the node name to
spmi@c448000 to match the actual register base address.

Fixes: 41b6e8db400c ("arm64: dts: qcom: Introduce Glymur base dtsi")
Signed-off-by: Gopikrishna Garmidi <gopikrishna.garmidi@oss.qualcomm.com>
---
 arch/arm64/boot/dts/qcom/glymur.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/glymur.dtsi b/arch/arm64/boot/dts/qcom/glymur.dtsi
index 0c5cb8532b20..849e66a33845 100644
--- a/arch/arm64/boot/dts/qcom/glymur.dtsi
+++ b/arch/arm64/boot/dts/qcom/glymur.dtsi
@@ -4814,7 +4814,7 @@ spmi_bus1: spmi@c437000 {
 				#size-cells = <0>;
 			};
 
-			spmi_bus2: spmi@c48000 {
+			spmi_bus2: spmi@c448000 {
 				reg = <0x0 0x0c448000 0x0 0x4000>,
 				      <0x0 0x0c8e0000 0x0 0x10000>,
 				      <0x0 0x0c44c000 0x0 0x8000>;

---
base-commit: e98d21c170b01ddef366f023bbfcf6b31509fa83
change-id: 20260518-glymur-fix-spmi-bus2-unit-addr-85018c01c8c6

Best regards,
-- 
Gopikrishna Garmidi <gopikrishna.garmidi@oss.qualcomm.com>


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

* Re: [PATCH] arm64: dts: qcom: glymur: Fix unit-address mismatch for spmi_bus2
  2026-05-18 11:16 [PATCH] arm64: dts: qcom: glymur: Fix unit-address mismatch for spmi_bus2 Gopikrishna Garmidi
@ 2026-05-18 11:21 ` Krzysztof Kozlowski
  2026-07-07  3:21 ` Bjorn Andersson
  1 sibling, 0 replies; 3+ messages in thread
From: Krzysztof Kozlowski @ 2026-05-18 11:21 UTC (permalink / raw)
  To: Gopikrishna Garmidi, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Maulik Shah, Dmitry Baryshkov,
	Pankaj Patil, Jyothi Kumar Seerapu
  Cc: Jishnu Prakash, Sibi Sankar, Raviteja Laggyshetty, Taniya Das,
	linux-arm-msm, devicetree, linux-kernel

On 18/05/2026 13:16, Gopikrishna Garmidi wrote:
> The spmi_bus2 node was named spmi@c48000, but its reg property
> specifies the base address as 0x0c448000. Fix the node name to
> spmi@c448000 to match the actual register base address.
> 
> Fixes: 41b6e8db400c ("arm64: dts: qcom: Introduce Glymur base dtsi")
> Signed-off-by: Gopikrishna Garmidi <gopikrishna.garmidi@oss.qualcomm.com>
> ---


Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>

Best regards,
Krzysztof

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

* Re: [PATCH] arm64: dts: qcom: glymur: Fix unit-address mismatch for spmi_bus2
  2026-05-18 11:16 [PATCH] arm64: dts: qcom: glymur: Fix unit-address mismatch for spmi_bus2 Gopikrishna Garmidi
  2026-05-18 11:21 ` Krzysztof Kozlowski
@ 2026-07-07  3:21 ` Bjorn Andersson
  1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Andersson @ 2026-07-07  3:21 UTC (permalink / raw)
  To: Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Maulik Shah, Dmitry Baryshkov, Pankaj Patil, Jyothi Kumar Seerapu,
	Gopikrishna Garmidi
  Cc: Jishnu Prakash, Sibi Sankar, Raviteja Laggyshetty, Taniya Das,
	linux-arm-msm, devicetree, linux-kernel


On Mon, 18 May 2026 04:16:17 -0700, Gopikrishna Garmidi wrote:
> The spmi_bus2 node was named spmi@c48000, but its reg property
> specifies the base address as 0x0c448000. Fix the node name to
> spmi@c448000 to match the actual register base address.
> 
> 

Applied, thanks!

[1/1] arm64: dts: qcom: glymur: Fix unit-address mismatch for spmi_bus2
      commit: 82a766b68cd4d323b302a28082fbb7924f1146e6

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

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

end of thread, other threads:[~2026-07-07  3:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-18 11:16 [PATCH] arm64: dts: qcom: glymur: Fix unit-address mismatch for spmi_bus2 Gopikrishna Garmidi
2026-05-18 11:21 ` Krzysztof Kozlowski
2026-07-07  3:21 ` Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox