linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: microchip: Minor whitespace cleanup
@ 2025-08-19 13:17 Krzysztof Kozlowski
  2025-08-19 14:00 ` Nicolas Ferre
  0 siblings, 1 reply; 2+ messages in thread
From: Krzysztof Kozlowski @ 2025-08-19 13:17 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Nicolas Ferre,
	Alexandre Belloni, Claudiu Beznea, devicetree, linux-arm-kernel,
	linux-kernel
  Cc: Krzysztof Kozlowski

The DTS code coding style expects exactly one space around '=' or '{'
characters.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts | 2 +-
 arch/arm/boot/dts/microchip/sama7d65.dtsi               | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts b/arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts
index 7eaf6ca233ec..c14c52936ecc 100644
--- a/arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts
+++ b/arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts
@@ -346,7 +346,7 @@ pinctrl_gmac0_txck_default: gmac0-txck-default {
 		bias-pull-up;
 	};
 
-	pinctrl_i2c10_default: i2c10-default{
+	pinctrl_i2c10_default: i2c10-default {
 		pinmux = <PIN_PB19__FLEXCOM10_IO1>,
 			 <PIN_PB20__FLEXCOM10_IO0>;
 		bias-pull-up;
diff --git a/arch/arm/boot/dts/microchip/sama7d65.dtsi b/arch/arm/boot/dts/microchip/sama7d65.dtsi
index c191acc2c89f..84bac1d29421 100644
--- a/arch/arm/boot/dts/microchip/sama7d65.dtsi
+++ b/arch/arm/boot/dts/microchip/sama7d65.dtsi
@@ -91,7 +91,7 @@ secumod: security-module@e0004000 {
 		};
 
 		sfrbu: sfr@e0008000 {
-			compatible ="microchip,sama7d65-sfrbu", "atmel,sama5d2-sfrbu", "syscon";
+			compatible = "microchip,sama7d65-sfrbu", "atmel,sama5d2-sfrbu", "syscon";
 			reg = <0xe0008000 0x20>;
 		};
 
-- 
2.48.1



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

* Re: [PATCH] ARM: dts: microchip: Minor whitespace cleanup
  2025-08-19 13:17 [PATCH] ARM: dts: microchip: Minor whitespace cleanup Krzysztof Kozlowski
@ 2025-08-19 14:00 ` Nicolas Ferre
  0 siblings, 0 replies; 2+ messages in thread
From: Nicolas Ferre @ 2025-08-19 14:00 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Alexandre Belloni, Claudiu Beznea, devicetree,
	linux-arm-kernel, linux-kernel
  Cc: Ryan Wanner, Mihai Sain

On 19/08/2025 at 15:17, Krzysztof Kozlowski wrote:
> The DTS code coding style expects exactly one space around '=' or '{'
> characters.

Thanks Krzysztof, and sorry about that.

> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>

> ---
>   arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts | 2 +-
>   arch/arm/boot/dts/microchip/sama7d65.dtsi               | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts b/arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts
> index 7eaf6ca233ec..c14c52936ecc 100644
> --- a/arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts
> +++ b/arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts
> @@ -346,7 +346,7 @@ pinctrl_gmac0_txck_default: gmac0-txck-default {
>                  bias-pull-up;
>          };
> 
> -       pinctrl_i2c10_default: i2c10-default{
> +       pinctrl_i2c10_default: i2c10-default {
>                  pinmux = <PIN_PB19__FLEXCOM10_IO1>,
>                           <PIN_PB20__FLEXCOM10_IO0>;
>                  bias-pull-up;
> diff --git a/arch/arm/boot/dts/microchip/sama7d65.dtsi b/arch/arm/boot/dts/microchip/sama7d65.dtsi
> index c191acc2c89f..84bac1d29421 100644
> --- a/arch/arm/boot/dts/microchip/sama7d65.dtsi
> +++ b/arch/arm/boot/dts/microchip/sama7d65.dtsi
> @@ -91,7 +91,7 @@ secumod: security-module@e0004000 {
>                  };
> 
>                  sfrbu: sfr@e0008000 {
> -                       compatible ="microchip,sama7d65-sfrbu", "atmel,sama5d2-sfrbu", "syscon";
> +                       compatible = "microchip,sama7d65-sfrbu", "atmel,sama5d2-sfrbu", "syscon";
>                          reg = <0xe0008000 0x20>;
>                  };
> 
> --
> 2.48.1
> 



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

end of thread, other threads:[~2025-08-19 18:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-19 13:17 [PATCH] ARM: dts: microchip: Minor whitespace cleanup Krzysztof Kozlowski
2025-08-19 14:00 ` Nicolas Ferre

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