linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema
@ 2021-08-20  8:17 Krzysztof Kozlowski
  2021-08-20  8:17 ` [PATCH 2/3] ARM: " Krzysztof Kozlowski
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2021-08-20  8:17 UTC (permalink / raw)
  To: Liviu Dudau, Sudeep Holla, Lorenzo Pieralisi, Rob Herring,
	linux-arm-kernel, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Align the watchdog and mmc device node names with the schema to fix
warnings like:

  mmci@50000: $nodename:0: 'mmci@50000' does not match '^mmc(@.*)?$'
  wdt@f0000: $nodename:0: 'wdt@f0000' does not match '^watchdog(@.*|-[0-9a-f])?$'

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 arch/arm64/boot/dts/arm/juno-motherboard.dtsi    | 4 ++--
 arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm64/boot/dts/arm/juno-motherboard.dtsi b/arch/arm64/boot/dts/arm/juno-motherboard.dtsi
index 40d95c58b55e..f45c912b2806 100644
--- a/arch/arm64/boot/dts/arm/juno-motherboard.dtsi
+++ b/arch/arm64/boot/dts/arm/juno-motherboard.dtsi
@@ -218,7 +218,7 @@ led7 {
 					};
 				};
 
-				mmci@50000 {
+				mmc@50000 {
 					compatible = "arm,pl180", "arm,primecell";
 					reg = <0x050000 0x1000>;
 					interrupts = <5>;
@@ -246,7 +246,7 @@ kmi@70000 {
 					clock-names = "KMIREFCLK", "apb_pclk";
 				};
 
-				wdt@f0000 {
+				watchdog@f0000 {
 					compatible = "arm,sp805", "arm,primecell";
 					reg = <0x0f0000 0x10000>;
 					interrupts = <7>;
diff --git a/arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi b/arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi
index 4c4a381d2c75..7260bcf4b2ab 100644
--- a/arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi
+++ b/arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi
@@ -130,7 +130,7 @@ aaci@40000 {
 					clock-names = "apb_pclk";
 				};
 
-				mmci@50000 {
+				mmc@50000 {
 					compatible = "arm,pl180", "arm,primecell";
 					reg = <0x050000 0x1000>;
 					interrupts = <9>, <10>;
@@ -190,7 +190,7 @@ v2m_serial3: serial@c0000 {
 					clock-names = "uartclk", "apb_pclk";
 				};
 
-				wdt@f0000 {
+				watchdog@f0000 {
 					compatible = "arm,sp805", "arm,primecell";
 					reg = <0x0f0000 0x1000>;
 					interrupts = <0>;
-- 
2.30.2


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

* [PATCH 2/3] ARM: dts: arm: align watchdog and mmc node names with dtschema
  2021-08-20  8:17 [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema Krzysztof Kozlowski
@ 2021-08-20  8:17 ` Krzysztof Kozlowski
  2021-08-20  8:17 ` [PATCH 3/3] arm64: dts: arm: drop unused interrupt-names in MHU Krzysztof Kozlowski
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2021-08-20  8:17 UTC (permalink / raw)
  To: Liviu Dudau, Sudeep Holla, Lorenzo Pieralisi, Rob Herring,
	linux-arm-kernel, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Align the watchdog and mmc device node names with the schema to fix
warnings like:

  mmci@50000: $nodename:0: 'mmci@50000' does not match '^mmc(@.*)?$'
  wdt@f0000: $nodename:0: 'wdt@f0000' does not match '^watchdog(@.*|-[0-9a-f])?$'

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 arch/arm/boot/dts/vexpress-v2m-rs1.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/vexpress-v2m-rs1.dtsi b/arch/arm/boot/dts/vexpress-v2m-rs1.dtsi
index 2ad9fd7c94ec..bcb3f581977a 100644
--- a/arch/arm/boot/dts/vexpress-v2m-rs1.dtsi
+++ b/arch/arm/boot/dts/vexpress-v2m-rs1.dtsi
@@ -215,7 +215,7 @@ aaci@40000 {
 					clock-names = "apb_pclk";
 				};
 
-				mmci@50000 {
+				mmc@50000 {
 					compatible = "arm,pl180", "arm,primecell";
 					reg = <0x050000 0x1000>;
 					interrupts = <9>, <10>;
@@ -275,7 +275,7 @@ v2m_serial3: serial@c0000 {
 					clock-names = "uartclk", "apb_pclk";
 				};
 
-				wdt@f0000 {
+				watchdog@f0000 {
 					compatible = "arm,sp805", "arm,primecell";
 					reg = <0x0f0000 0x1000>;
 					interrupts = <0>;
-- 
2.30.2


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

* [PATCH 3/3] arm64: dts: arm: drop unused interrupt-names in MHU
  2021-08-20  8:17 [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema Krzysztof Kozlowski
  2021-08-20  8:17 ` [PATCH 2/3] ARM: " Krzysztof Kozlowski
@ 2021-08-20  8:17 ` Krzysztof Kozlowski
  2021-08-26 14:09 ` [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema Liviu Dudau
  2021-09-15  9:13 ` Sudeep Holla
  3 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2021-08-20  8:17 UTC (permalink / raw)
  To: Liviu Dudau, Sudeep Holla, Lorenzo Pieralisi, Rob Herring,
	linux-arm-kernel, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

The arm,mhu bindings and driver do not define interrupt-names, so drop
the property to fix warnings:

  arch/arm64/boot/dts/arm/juno-r2.dt.yaml: mhu@2b1f0000: 'interrupt-names' does not match any of the regexes: 'pinctrl-[0-9]+'

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 arch/arm64/boot/dts/arm/juno-base.dtsi | 2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/arm64/boot/dts/arm/juno-base.dtsi b/arch/arm64/boot/dts/arm/juno-base.dtsi
index 8e7a66943b01..e4fea639731e 100644
--- a/arch/arm64/boot/dts/arm/juno-base.dtsi
+++ b/arch/arm64/boot/dts/arm/juno-base.dtsi
@@ -27,8 +27,6 @@ mailbox: mhu@2b1f0000 {
 		reg = <0x0 0x2b1f0000 0x0 0x1000>;
 		interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>,
 			     <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
-		interrupt-names = "mhu_lpri_rx",
-				  "mhu_hpri_rx";
 		#mbox-cells = <1>;
 		clocks = <&soc_refclk100mhz>;
 		clock-names = "apb_pclk";
-- 
2.30.2


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

* Re: [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema
  2021-08-20  8:17 [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema Krzysztof Kozlowski
  2021-08-20  8:17 ` [PATCH 2/3] ARM: " Krzysztof Kozlowski
  2021-08-20  8:17 ` [PATCH 3/3] arm64: dts: arm: drop unused interrupt-names in MHU Krzysztof Kozlowski
@ 2021-08-26 14:09 ` Liviu Dudau
  2021-09-15  9:13 ` Sudeep Holla
  3 siblings, 0 replies; 5+ messages in thread
From: Liviu Dudau @ 2021-08-26 14:09 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Sudeep Holla, Lorenzo Pieralisi, Rob Herring, linux-arm-kernel,
	devicetree, linux-kernel

On Fri, Aug 20, 2021 at 10:17:31AM +0200, Krzysztof Kozlowski wrote:
> Align the watchdog and mmc device node names with the schema to fix
> warnings like:
> 
>   mmci@50000: $nodename:0: 'mmci@50000' does not match '^mmc(@.*)?$'
>   wdt@f0000: $nodename:0: 'wdt@f0000' does not match '^watchdog(@.*|-[0-9a-f])?$'
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

For the whole series: Acked-by: Liviu Dudau <liviu.dudau@arm.com>

Many thanks,
Liviu

> ---
>  arch/arm64/boot/dts/arm/juno-motherboard.dtsi    | 4 ++--
>  arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/arm/juno-motherboard.dtsi b/arch/arm64/boot/dts/arm/juno-motherboard.dtsi
> index 40d95c58b55e..f45c912b2806 100644
> --- a/arch/arm64/boot/dts/arm/juno-motherboard.dtsi
> +++ b/arch/arm64/boot/dts/arm/juno-motherboard.dtsi
> @@ -218,7 +218,7 @@ led7 {
>  					};
>  				};
>  
> -				mmci@50000 {
> +				mmc@50000 {
>  					compatible = "arm,pl180", "arm,primecell";
>  					reg = <0x050000 0x1000>;
>  					interrupts = <5>;
> @@ -246,7 +246,7 @@ kmi@70000 {
>  					clock-names = "KMIREFCLK", "apb_pclk";
>  				};
>  
> -				wdt@f0000 {
> +				watchdog@f0000 {
>  					compatible = "arm,sp805", "arm,primecell";
>  					reg = <0x0f0000 0x10000>;
>  					interrupts = <7>;
> diff --git a/arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi b/arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi
> index 4c4a381d2c75..7260bcf4b2ab 100644
> --- a/arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi
> +++ b/arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi
> @@ -130,7 +130,7 @@ aaci@40000 {
>  					clock-names = "apb_pclk";
>  				};
>  
> -				mmci@50000 {
> +				mmc@50000 {
>  					compatible = "arm,pl180", "arm,primecell";
>  					reg = <0x050000 0x1000>;
>  					interrupts = <9>, <10>;
> @@ -190,7 +190,7 @@ v2m_serial3: serial@c0000 {
>  					clock-names = "uartclk", "apb_pclk";
>  				};
>  
> -				wdt@f0000 {
> +				watchdog@f0000 {
>  					compatible = "arm,sp805", "arm,primecell";
>  					reg = <0x0f0000 0x1000>;
>  					interrupts = <0>;
> -- 
> 2.30.2
> 

-- 
====================
| I would like to |
| fix the world,  |
| but they're not |
| giving me the   |
 \ source code!  /
  ---------------
    ¯\_(ツ)_/¯

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

* Re: [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema
  2021-08-20  8:17 [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2021-08-26 14:09 ` [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema Liviu Dudau
@ 2021-09-15  9:13 ` Sudeep Holla
  3 siblings, 0 replies; 5+ messages in thread
From: Sudeep Holla @ 2021-09-15  9:13 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Rob Herring, devicetree, linux-arm-kernel,
	Lorenzo Pieralisi, Liviu Dudau, linux-kernel
  Cc: Sudeep Holla

On Fri, 20 Aug 2021 10:17:31 +0200, Krzysztof Kozlowski wrote:
> Align the watchdog and mmc device node names with the schema to fix
> warnings like:
> 
>   mmci@50000: $nodename:0: 'mmci@50000' does not match '^mmc(@.*)?$'
>   wdt@f0000: $nodename:0: 'wdt@f0000' does not match '^watchdog(@.*|-[0-9a-f])?$'


Applied to sudeep.holla/linux (for-next/juno), thanks!

[1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema
      https://git.kernel.org/sudeep.holla/c/b43446b4f5
[2/3] ARM: dts: arm: align watchdog and mmc node names with dtschema
      https://git.kernel.org/sudeep.holla/c/5f741ef384
[3/3] arm64: dts: arm: drop unused interrupt-names in MHU
      https://git.kernel.org/sudeep.holla/c/217cb530a3

--
Regards,
Sudeep


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

end of thread, other threads:[~2021-09-15  9:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-20  8:17 [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema Krzysztof Kozlowski
2021-08-20  8:17 ` [PATCH 2/3] ARM: " Krzysztof Kozlowski
2021-08-20  8:17 ` [PATCH 3/3] arm64: dts: arm: drop unused interrupt-names in MHU Krzysztof Kozlowski
2021-08-26 14:09 ` [PATCH 1/3] arm64: dts: arm: align watchdog and mmc node names with dtschema Liviu Dudau
2021-09-15  9:13 ` Sudeep Holla

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