2024-03-27 19:22:20

by Sebastian Reichel

[permalink] [raw]
Subject: [PATCH v2 5/7] ARM: dts: omap3: fix ssi-port node name

The DT binding specifies, that the node names for the SSI ports should
be just 'port@<address>' instead of 'ssi-port@<address>'.

Signed-off-by: Sebastian Reichel <[email protected]>
---
arch/arm/boot/dts/ti/omap/omap3.dtsi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/ti/omap/omap3.dtsi b/arch/arm/boot/dts/ti/omap/omap3.dtsi
index 92cd4c99dae7..ae2bfcd7e18e 100644
--- a/arch/arm/boot/dts/ti/omap/omap3.dtsi
+++ b/arch/arm/boot/dts/ti/omap/omap3.dtsi
@@ -999,7 +999,7 @@ ssi: ssi-controller@48058000 {
#size-cells = <1>;
ranges;

- ssi_port1: ssi-port@4805a000 {
+ ssi_port1: port@4805a000 {
compatible = "ti,omap3-ssi-port";

reg = <0x4805a000 0x800>,
@@ -1011,7 +1011,7 @@ ssi_port1: ssi-port@4805a000 {
<68>;
};

- ssi_port2: ssi-port@4805b000 {
+ ssi_port2: port@4805b000 {
compatible = "ti,omap3-ssi-port";

reg = <0x4805b000 0x800>,

--
2.43.0



2024-03-28 09:31:15

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH v2 5/7] ARM: dts: omap3: fix ssi-port node name

On 27/03/2024 20:11, Sebastian Reichel wrote:
> The DT binding specifies, that the node names for the SSI ports should
> be just 'port@<address>' instead of 'ssi-port@<address>'.
>
> Signed-off-by: Sebastian Reichel <[email protected]>
> ---

Acked-by: Krzysztof Kozlowski <[email protected]>

Best regards,
Krzysztof