devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: cx92755: align UART node name with bindings
@ 2023-01-23 15:15 Krzysztof Kozlowski
  2023-01-23 15:34 ` Baruch Siach
  2023-01-25 10:39 ` Krzysztof Kozlowski
  0 siblings, 2 replies; 3+ messages in thread
From: Krzysztof Kozlowski @ 2023-01-23 15:15 UTC (permalink / raw)
  To: Baruch Siach, Rob Herring, Krzysztof Kozlowski, linux-arm-kernel,
	devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Bindings expect UART/serial node names to be "serial".

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm/boot/dts/cx92755.dtsi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/boot/dts/cx92755.dtsi b/arch/arm/boot/dts/cx92755.dtsi
index d2e8f36f8c60..227675fbe820 100644
--- a/arch/arm/boot/dts/cx92755.dtsi
+++ b/arch/arm/boot/dts/cx92755.dtsi
@@ -107,7 +107,7 @@ uc_regs: syscon@f00003a0 {
 		reg = <0xf00003a0 0x10>;
 	};
 
-	uart0: uart@f0000740 {
+	uart0: serial@f0000740 {
 		compatible = "cnxt,cx92755-usart";
 		reg = <0xf0000740 0x20>;
 		clocks = <&main_clk>;
@@ -115,7 +115,7 @@ uart0: uart@f0000740 {
 		status = "disabled";
 	};
 
-	uart1: uart@f0000760 {
+	uart1: serial@f0000760 {
 		compatible = "cnxt,cx92755-usart";
 		reg = <0xf0000760 0x20>;
 		clocks = <&main_clk>;
@@ -123,7 +123,7 @@ uart1: uart@f0000760 {
 		status = "disabled";
 	};
 
-	uart2: uart@f0000780 {
+	uart2: serial@f0000780 {
 		compatible = "cnxt,cx92755-usart";
 		reg = <0xf0000780 0x20>;
 		clocks = <&main_clk>;
-- 
2.34.1


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

* Re: [PATCH] ARM: dts: cx92755: align UART node name with bindings
  2023-01-23 15:15 [PATCH] ARM: dts: cx92755: align UART node name with bindings Krzysztof Kozlowski
@ 2023-01-23 15:34 ` Baruch Siach
  2023-01-25 10:39 ` Krzysztof Kozlowski
  1 sibling, 0 replies; 3+ messages in thread
From: Baruch Siach @ 2023-01-23 15:34 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Rob Herring, Krzysztof Kozlowski, linux-arm-kernel, devicetree,
	linux-kernel

Hi Krzysztof,

On Mon, Jan 23 2023, Krzysztof Kozlowski wrote:
> Bindings expect UART/serial node names to be "serial".
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Acked-by: Baruch Siach <baruch@tkos.co.il>

Thanks,
baruch

> ---
>  arch/arm/boot/dts/cx92755.dtsi | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/boot/dts/cx92755.dtsi b/arch/arm/boot/dts/cx92755.dtsi
> index d2e8f36f8c60..227675fbe820 100644
> --- a/arch/arm/boot/dts/cx92755.dtsi
> +++ b/arch/arm/boot/dts/cx92755.dtsi
> @@ -107,7 +107,7 @@ uc_regs: syscon@f00003a0 {
>  		reg = <0xf00003a0 0x10>;
>  	};
>  
> -	uart0: uart@f0000740 {
> +	uart0: serial@f0000740 {
>  		compatible = "cnxt,cx92755-usart";
>  		reg = <0xf0000740 0x20>;
>  		clocks = <&main_clk>;
> @@ -115,7 +115,7 @@ uart0: uart@f0000740 {
>  		status = "disabled";
>  	};
>  
> -	uart1: uart@f0000760 {
> +	uart1: serial@f0000760 {
>  		compatible = "cnxt,cx92755-usart";
>  		reg = <0xf0000760 0x20>;
>  		clocks = <&main_clk>;
> @@ -123,7 +123,7 @@ uart1: uart@f0000760 {
>  		status = "disabled";
>  	};
>  
> -	uart2: uart@f0000780 {
> +	uart2: serial@f0000780 {
>  		compatible = "cnxt,cx92755-usart";
>  		reg = <0xf0000780 0x20>;
>  		clocks = <&main_clk>;


-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -

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

* Re: [PATCH] ARM: dts: cx92755: align UART node name with bindings
  2023-01-23 15:15 [PATCH] ARM: dts: cx92755: align UART node name with bindings Krzysztof Kozlowski
  2023-01-23 15:34 ` Baruch Siach
@ 2023-01-25 10:39 ` Krzysztof Kozlowski
  1 sibling, 0 replies; 3+ messages in thread
From: Krzysztof Kozlowski @ 2023-01-25 10:39 UTC (permalink / raw)
  To: devicetree, Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
	Baruch Siach, linux-kernel, linux-arm-kernel

On Mon, 23 Jan 2023 16:15:27 +0100, Krzysztof Kozlowski wrote:
> Bindings expect UART/serial node names to be "serial".
> 
> 

Applied, thanks!

[1/1] ARM: dts: cx92755: align UART node name with bindings
      https://git.kernel.org/krzk/linux-dt/c/60e6cca8a2610379c1d29cdc8db42c020de28d8d

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

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

end of thread, other threads:[~2023-01-25 10:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-23 15:15 [PATCH] ARM: dts: cx92755: align UART node name with bindings Krzysztof Kozlowski
2023-01-23 15:34 ` Baruch Siach
2023-01-25 10:39 ` Krzysztof Kozlowski

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).