Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: arm: Correct indentation
@ 2026-07-06 10:19 Krzysztof Kozlowski
  2026-07-06 10:50 ` Liviu Dudau
  0 siblings, 1 reply; 2+ messages in thread
From: Krzysztof Kozlowski @ 2026-07-06 10:19 UTC (permalink / raw)
  To: Linus Walleij, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Liviu Dudau, Sudeep Holla, Lorenzo Pieralisi, linux-arm-kernel,
	devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Correct spaces or mix of tabs+spaces into proper tab-indented lines.
No functional impact (same DTB).

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

---

Ongoing bigger work for all bindings and DTS with built-in checker (dt-check-style).
---
 arch/arm/boot/dts/arm/arm-realview-eb.dtsi     | 2 +-
 arch/arm/boot/dts/arm/arm-realview-pb1176.dts  | 2 +-
 arch/arm/boot/dts/arm/arm-realview-pb11mp.dts  | 6 +++---
 arch/arm/boot/dts/arm/arm-realview-pbx.dtsi    | 6 +++---
 arch/arm/boot/dts/arm/vexpress-v2p-ca15_a7.dts | 4 ++--
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/arch/arm/boot/dts/arm/arm-realview-eb.dtsi b/arch/arm/boot/dts/arm/arm-realview-eb.dtsi
index ae370d4eb9d8..f90e28ee4cb9 100644
--- a/arch/arm/boot/dts/arm/arm-realview-eb.dtsi
+++ b/arch/arm/boot/dts/arm/arm-realview-eb.dtsi
@@ -51,7 +51,7 @@ vmmc: regulator-vmmc {
 		regulator-min-microvolt = <3300000>;
 		regulator-max-microvolt = <3300000>;
 		regulator-boot-on;
-        };
+	};
 
 	xtal24mhz: mclk: kmiclk: sspclk: uartclk: wdogclk: clock-24000000 {
 		#clock-cells = <0>;
diff --git a/arch/arm/boot/dts/arm/arm-realview-pb1176.dts b/arch/arm/boot/dts/arm/arm-realview-pb1176.dts
index a75d8b107fe1..1cd095496832 100644
--- a/arch/arm/boot/dts/arm/arm-realview-pb1176.dts
+++ b/arch/arm/boot/dts/arm/arm-realview-pb1176.dts
@@ -53,7 +53,7 @@ vmmc: regulator-vmmc {
 		regulator-min-microvolt = <3300000>;
 		regulator-max-microvolt = <3300000>;
 		regulator-boot-on;
-        };
+	};
 
 	veth: regulator-veth {
 		compatible = "regulator-fixed";
diff --git a/arch/arm/boot/dts/arm/arm-realview-pb11mp.dts b/arch/arm/boot/dts/arm/arm-realview-pb11mp.dts
index 59c78def83f2..635b09030f60 100644
--- a/arch/arm/boot/dts/arm/arm-realview-pb11mp.dts
+++ b/arch/arm/boot/dts/arm/arm-realview-pb11mp.dts
@@ -153,7 +153,7 @@ vmmc: regulator-vmmc {
 		regulator-min-microvolt = <3300000>;
 		regulator-max-microvolt = <3300000>;
 		regulator-boot-on;
-        };
+	};
 
 	veth: regulator-veth {
 		compatible = "regulator-fixed";
@@ -544,7 +544,7 @@ timer01: timer@10011000 {
 			interrupts = <0 1 IRQ_TYPE_LEVEL_HIGH>;
 			arm,sp804-has-irq = <1>;
 			clocks = <&sp810_syscon 0>,
-			         <&sp810_syscon 1>,
+				 <&sp810_syscon 1>,
 				 <&pclk>;
 			clock-names = "timer0clk",
 				    "timer1clk",
@@ -558,7 +558,7 @@ timer23: timer@10012000 {
 			interrupts = <0 2 IRQ_TYPE_LEVEL_HIGH>;
 			arm,sp804-has-irq = <1>;
 			clocks = <&sp810_syscon 2>,
-			         <&sp810_syscon 3>,
+				 <&sp810_syscon 3>,
 				 <&pclk>;
 			clock-names = "timer0clk",
 				    "timer1clk",
diff --git a/arch/arm/boot/dts/arm/arm-realview-pbx.dtsi b/arch/arm/boot/dts/arm/arm-realview-pbx.dtsi
index 0d3d96ffa6e6..366c8baefe8c 100644
--- a/arch/arm/boot/dts/arm/arm-realview-pbx.dtsi
+++ b/arch/arm/boot/dts/arm/arm-realview-pbx.dtsi
@@ -52,7 +52,7 @@ vmmc: regulator-vmmc {
 		regulator-min-microvolt = <3300000>;
 		regulator-max-microvolt = <3300000>;
 		regulator-boot-on;
-        };
+	};
 
 	veth: regulator-veth {
 		compatible = "regulator-fixed";
@@ -373,7 +373,7 @@ timer01: timer@10011000 {
 			compatible = "arm,sp804", "arm,primecell";
 			reg = <0x10011000 0x1000>;
 			clocks = <&sp810_syscon0 0>,
-			         <&sp810_syscon0 1>,
+				 <&sp810_syscon0 1>,
 				 <&pclk>;
 			clock-names = "timerclk0",
 				    "timerclk1",
@@ -384,7 +384,7 @@ timer23: timer@10012000 {
 			compatible = "arm,sp804", "arm,primecell";
 			reg = <0x10012000 0x1000>;
 			clocks = <&sp810_syscon0 2>,
-			         <&sp810_syscon0 3>,
+				 <&sp810_syscon0 3>,
 				 <&pclk>;
 			clock-names = "timerclk2",
 				    "timerclk3",
diff --git a/arch/arm/boot/dts/arm/vexpress-v2p-ca15_a7.dts b/arch/arm/boot/dts/arm/vexpress-v2p-ca15_a7.dts
index 6ef23c53d2d8..64f87e6c12bf 100644
--- a/arch/arm/boot/dts/arm/vexpress-v2p-ca15_a7.dts
+++ b/arch/arm/boot/dts/arm/vexpress-v2p-ca15_a7.dts
@@ -209,11 +209,11 @@ dma@7ff00000 {
 		clock-names = "apb_pclk";
 	};
 
-        scc@7fff0000 {
+	scc@7fff0000 {
 		compatible = "arm,vexpress-scc,v2p-ca15_a7", "arm,vexpress-scc";
 		reg = <0 0x7fff0000 0 0x1000>;
 		interrupts = <0 95 4>;
-        };
+	};
 
 	timer {
 		compatible = "arm,armv7-timer";
-- 
2.53.0



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

* Re: [PATCH] ARM: dts: arm: Correct indentation
  2026-07-06 10:19 [PATCH] ARM: dts: arm: Correct indentation Krzysztof Kozlowski
@ 2026-07-06 10:50 ` Liviu Dudau
  0 siblings, 0 replies; 2+ messages in thread
From: Liviu Dudau @ 2026-07-06 10:50 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Linus Walleij, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Sudeep Holla, Lorenzo Pieralisi, linux-arm-kernel, devicetree,
	linux-kernel

On Mon, Jul 06, 2026 at 12:19:43PM +0200, Krzysztof Kozlowski wrote:
> Correct spaces or mix of tabs+spaces into proper tab-indented lines.
> No functional impact (same DTB).
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
>

Acked-by: Liviu Dudau <liviu.dudau@arm.com>

Best regards,
Liviu

> ---
> 
> Ongoing bigger work for all bindings and DTS with built-in checker (dt-check-style).
> ---
>  arch/arm/boot/dts/arm/arm-realview-eb.dtsi     | 2 +-
>  arch/arm/boot/dts/arm/arm-realview-pb1176.dts  | 2 +-
>  arch/arm/boot/dts/arm/arm-realview-pb11mp.dts  | 6 +++---
>  arch/arm/boot/dts/arm/arm-realview-pbx.dtsi    | 6 +++---
>  arch/arm/boot/dts/arm/vexpress-v2p-ca15_a7.dts | 4 ++--
>  5 files changed, 10 insertions(+), 10 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/arm/arm-realview-eb.dtsi b/arch/arm/boot/dts/arm/arm-realview-eb.dtsi
> index ae370d4eb9d8..f90e28ee4cb9 100644
> --- a/arch/arm/boot/dts/arm/arm-realview-eb.dtsi
> +++ b/arch/arm/boot/dts/arm/arm-realview-eb.dtsi
> @@ -51,7 +51,7 @@ vmmc: regulator-vmmc {
>  		regulator-min-microvolt = <3300000>;
>  		regulator-max-microvolt = <3300000>;
>  		regulator-boot-on;
> -        };
> +	};
>  
>  	xtal24mhz: mclk: kmiclk: sspclk: uartclk: wdogclk: clock-24000000 {
>  		#clock-cells = <0>;
> diff --git a/arch/arm/boot/dts/arm/arm-realview-pb1176.dts b/arch/arm/boot/dts/arm/arm-realview-pb1176.dts
> index a75d8b107fe1..1cd095496832 100644
> --- a/arch/arm/boot/dts/arm/arm-realview-pb1176.dts
> +++ b/arch/arm/boot/dts/arm/arm-realview-pb1176.dts
> @@ -53,7 +53,7 @@ vmmc: regulator-vmmc {
>  		regulator-min-microvolt = <3300000>;
>  		regulator-max-microvolt = <3300000>;
>  		regulator-boot-on;
> -        };
> +	};
>  
>  	veth: regulator-veth {
>  		compatible = "regulator-fixed";
> diff --git a/arch/arm/boot/dts/arm/arm-realview-pb11mp.dts b/arch/arm/boot/dts/arm/arm-realview-pb11mp.dts
> index 59c78def83f2..635b09030f60 100644
> --- a/arch/arm/boot/dts/arm/arm-realview-pb11mp.dts
> +++ b/arch/arm/boot/dts/arm/arm-realview-pb11mp.dts
> @@ -153,7 +153,7 @@ vmmc: regulator-vmmc {
>  		regulator-min-microvolt = <3300000>;
>  		regulator-max-microvolt = <3300000>;
>  		regulator-boot-on;
> -        };
> +	};
>  
>  	veth: regulator-veth {
>  		compatible = "regulator-fixed";
> @@ -544,7 +544,7 @@ timer01: timer@10011000 {
>  			interrupts = <0 1 IRQ_TYPE_LEVEL_HIGH>;
>  			arm,sp804-has-irq = <1>;
>  			clocks = <&sp810_syscon 0>,
> -			         <&sp810_syscon 1>,
> +				 <&sp810_syscon 1>,
>  				 <&pclk>;
>  			clock-names = "timer0clk",
>  				    "timer1clk",
> @@ -558,7 +558,7 @@ timer23: timer@10012000 {
>  			interrupts = <0 2 IRQ_TYPE_LEVEL_HIGH>;
>  			arm,sp804-has-irq = <1>;
>  			clocks = <&sp810_syscon 2>,
> -			         <&sp810_syscon 3>,
> +				 <&sp810_syscon 3>,
>  				 <&pclk>;
>  			clock-names = "timer0clk",
>  				    "timer1clk",
> diff --git a/arch/arm/boot/dts/arm/arm-realview-pbx.dtsi b/arch/arm/boot/dts/arm/arm-realview-pbx.dtsi
> index 0d3d96ffa6e6..366c8baefe8c 100644
> --- a/arch/arm/boot/dts/arm/arm-realview-pbx.dtsi
> +++ b/arch/arm/boot/dts/arm/arm-realview-pbx.dtsi
> @@ -52,7 +52,7 @@ vmmc: regulator-vmmc {
>  		regulator-min-microvolt = <3300000>;
>  		regulator-max-microvolt = <3300000>;
>  		regulator-boot-on;
> -        };
> +	};
>  
>  	veth: regulator-veth {
>  		compatible = "regulator-fixed";
> @@ -373,7 +373,7 @@ timer01: timer@10011000 {
>  			compatible = "arm,sp804", "arm,primecell";
>  			reg = <0x10011000 0x1000>;
>  			clocks = <&sp810_syscon0 0>,
> -			         <&sp810_syscon0 1>,
> +				 <&sp810_syscon0 1>,
>  				 <&pclk>;
>  			clock-names = "timerclk0",
>  				    "timerclk1",
> @@ -384,7 +384,7 @@ timer23: timer@10012000 {
>  			compatible = "arm,sp804", "arm,primecell";
>  			reg = <0x10012000 0x1000>;
>  			clocks = <&sp810_syscon0 2>,
> -			         <&sp810_syscon0 3>,
> +				 <&sp810_syscon0 3>,
>  				 <&pclk>;
>  			clock-names = "timerclk2",
>  				    "timerclk3",
> diff --git a/arch/arm/boot/dts/arm/vexpress-v2p-ca15_a7.dts b/arch/arm/boot/dts/arm/vexpress-v2p-ca15_a7.dts
> index 6ef23c53d2d8..64f87e6c12bf 100644
> --- a/arch/arm/boot/dts/arm/vexpress-v2p-ca15_a7.dts
> +++ b/arch/arm/boot/dts/arm/vexpress-v2p-ca15_a7.dts
> @@ -209,11 +209,11 @@ dma@7ff00000 {
>  		clock-names = "apb_pclk";
>  	};
>  
> -        scc@7fff0000 {
> +	scc@7fff0000 {
>  		compatible = "arm,vexpress-scc,v2p-ca15_a7", "arm,vexpress-scc";
>  		reg = <0 0x7fff0000 0 0x1000>;
>  		interrupts = <0 95 4>;
> -        };
> +	};
>  
>  	timer {
>  		compatible = "arm,armv7-timer";
> -- 
> 2.53.0
> 

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


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

end of thread, other threads:[~2026-07-06 10:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-06 10:19 [PATCH] ARM: dts: arm: Correct indentation Krzysztof Kozlowski
2026-07-06 10:50 ` Liviu Dudau

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