linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: dts: ti: add missing space before {
@ 2023-07-05 14:57 Krzysztof Kozlowski
  2023-07-05 14:57 ` [PATCH 2/2] arm64: " Krzysztof Kozlowski
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2023-07-05 14:57 UTC (permalink / raw)
  To: David Lechner, Bartosz Golaszewski, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Nishanth Menon,
	Santosh Shilimkar, Benoît Cousson, Tony Lindgren,
	Vignesh Raghavendra, Tero Kristo, linux-arm-kernel, devicetree,
	linux-kernel, linux-omap
  Cc: Krzysztof Kozlowski

Add missing whitespace between node name/label and opening {.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts | 2 +-
 arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi | 2 +-
 arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts    | 8 ++++----
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts b/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
index afd04a423856..17a1632a8ac1 100644
--- a/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
+++ b/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
@@ -391,7 +391,7 @@ &spi1 {
 	pinctrl-names = "default";
 	cs-gpios = <&gpio 44 GPIO_ACTIVE_LOW>;
 
-	display@0{
+	display@0 {
 		compatible = "lego,ev3-lcd";
 		reg = <0>;
 		spi-max-frequency = <10000000>;
diff --git a/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi b/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi
index 8949578e62e8..2062fe561642 100644
--- a/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi
+++ b/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi
@@ -137,7 +137,7 @@ uart01_spi2_pins: uart01-spi2-pins {
 				>;
 			};
 
-			dfesync_rp1_pins: dfesync-rp1-pins{
+			dfesync_rp1_pins: dfesync-rp1-pins {
 				pinctrl-single,bits = <
 					/* DFESYNC_RP1_SEL */
 					0x0 0x0 0x2
diff --git a/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts b/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts
index 863552393c07..edaddc7b6a5e 100644
--- a/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts
+++ b/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts
@@ -58,7 +58,7 @@ vdd_core: fixed-regulator-vdd_core {
 		vin-supply = <&vdd_corereg>;
 	};
 
-	v1_8dreg: fixed-regulator-v1_8dreg{
+	v1_8dreg: fixed-regulator-v1_8dreg {
 		compatible = "regulator-fixed";
 		regulator-name = "V1_8DREG";
 		regulator-min-microvolt = <1800000>;
@@ -68,7 +68,7 @@ v1_8dreg: fixed-regulator-v1_8dreg{
 		vin-supply = <&v24_0d>;
 	};
 
-	v1_8d: fixed-regulator-v1_8d{
+	v1_8d: fixed-regulator-v1_8d {
 		compatible = "regulator-fixed";
 		regulator-name = "V1_8D";
 		regulator-min-microvolt = <1800000>;
@@ -78,7 +78,7 @@ v1_8d: fixed-regulator-v1_8d{
 		vin-supply = <&v1_8dreg>;
 	};
 
-	v1_5dreg: fixed-regulator-v1_5dreg{
+	v1_5dreg: fixed-regulator-v1_5dreg {
 		compatible = "regulator-fixed";
 		regulator-name = "V1_5DREG";
 		regulator-min-microvolt = <1500000>;
@@ -88,7 +88,7 @@ v1_5dreg: fixed-regulator-v1_5dreg{
 		vin-supply = <&v24_0d>;
 	};
 
-	v1_5d: fixed-regulator-v1_5d{
+	v1_5d: fixed-regulator-v1_5d {
 		compatible = "regulator-fixed";
 		regulator-name = "V1_5D";
 		regulator-min-microvolt = <1500000>;
-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 2/2] arm64: dts: ti: add missing space before {
  2023-07-05 14:57 [PATCH 1/2] ARM: dts: ti: add missing space before { Krzysztof Kozlowski
@ 2023-07-05 14:57 ` Krzysztof Kozlowski
  2023-07-05 16:23   ` David Lechner
  2023-07-05 16:22 ` [PATCH 1/2] ARM: " David Lechner
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Krzysztof Kozlowski @ 2023-07-05 14:57 UTC (permalink / raw)
  To: David Lechner, Bartosz Golaszewski, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Nishanth Menon,
	Santosh Shilimkar, Benoît Cousson, Tony Lindgren,
	Vignesh Raghavendra, Tero Kristo, linux-arm-kernel, devicetree,
	linux-kernel, linux-omap
  Cc: Krzysztof Kozlowski

Add missing whitespace between node name/label and opening {.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/ti/k3-am625-sk.dts                 | 2 +-
 arch/arm64/boot/dts/ti/k3-am64-main.dtsi               | 4 ++--
 arch/arm64/boot/dts/ti/k3-j721e-main.dtsi              | 2 +-
 arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts | 2 +-
 arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi       | 2 +-
 arch/arm64/boot/dts/ti/k3-j784s4-evm.dts               | 2 +-
 arch/arm64/boot/dts/ti/k3-j784s4-mcu-wakeup.dtsi       | 2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/arch/arm64/boot/dts/ti/k3-am625-sk.dts b/arch/arm64/boot/dts/ti/k3-am625-sk.dts
index 3f9ef4053aa6..7c98c1b855d1 100644
--- a/arch/arm64/boot/dts/ti/k3-am625-sk.dts
+++ b/arch/arm64/boot/dts/ti/k3-am625-sk.dts
@@ -212,7 +212,7 @@ &ospi0 {
 	pinctrl-names = "default";
 	pinctrl-0 = <&ospi0_pins_default>;
 
-	flash@0{
+	flash@0 {
 		compatible = "jedec,spi-nor";
 		reg = <0x0>;
 		spi-tx-bus-width = <8>;
diff --git a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
index 1664d9f0241c..a57ea7130ca3 100644
--- a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi
@@ -733,7 +733,7 @@ timesync_router: pinctrl@a40000 {
 		pinctrl-single,function-mask = <0x000107ff>;
 	};
 
-	usbss0: cdns-usb@f900000{
+	usbss0: cdns-usb@f900000 {
 		compatible = "ti,am64-usb";
 		reg = <0x00 0xf900000 0x00 0x100>;
 		power-domains = <&k3_pds 161 TI_SCI_PD_EXCLUSIVE>;
@@ -744,7 +744,7 @@ usbss0: cdns-usb@f900000{
 		#address-cells = <2>;
 		#size-cells = <2>;
 		ranges;
-		usb0: usb@f400000{
+		usb0: usb@f400000 {
 			compatible = "cdns,usb3";
 			reg = <0x00 0xf400000 0x00 0x10000>,
 			      <0x00 0xf410000 0x00 0x10000>,
diff --git a/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi b/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
index 649628685c32..575435c1a984 100644
--- a/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
@@ -660,7 +660,7 @@ wiz1_refclk_dig: refclk-dig {
 			assigned-clock-parents = <&k3_clks 293 13>;
 		};
 
-		wiz1_cmn_refclk_dig_div: cmn-refclk-dig-div{
+		wiz1_cmn_refclk_dig_div: cmn-refclk-dig-div {
 			clocks = <&wiz1_refclk_dig>;
 			#clock-cells = <0>;
 		};
diff --git a/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts b/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts
index 04d4739d7245..092ab1e14ba5 100644
--- a/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts
+++ b/arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dts
@@ -407,7 +407,7 @@ &ospi1 {
 	pinctrl-names = "default";
 	pinctrl-0 = <&mcu_fss0_ospi1_pins_default>;
 
-	flash@0{
+	flash@0 {
 		compatible = "jedec,spi-nor";
 		reg = <0x0>;
 		spi-tx-bus-width = <1>;
diff --git a/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi b/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi
index e7dd947a1814..736ec5fa0ea2 100644
--- a/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi
@@ -440,7 +440,7 @@ mcu_spi2: spi@40320000 {
 		status = "disabled";
 	};
 
-	mcu_navss: bus@28380000{
+	mcu_navss: bus@28380000 {
 		compatible = "simple-mfd";
 		#address-cells = <2>;
 		#size-cells = <2>;
diff --git a/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts b/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts
index 430b8a2c5df5..7ad152a1b90f 100644
--- a/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts
+++ b/arch/arm64/boot/dts/ti/k3-j784s4-evm.dts
@@ -499,7 +499,7 @@ &ospi1 {
 	pinctrl-names = "default";
 	pinctrl-0 = <&mcu_fss0_ospi1_pins_default>;
 
-	flash@0{
+	flash@0 {
 		compatible = "jedec,spi-nor";
 		reg = <0x0>;
 		spi-tx-bus-width = <1>;
diff --git a/arch/arm64/boot/dts/ti/k3-j784s4-mcu-wakeup.dtsi b/arch/arm64/boot/dts/ti/k3-j784s4-mcu-wakeup.dtsi
index 657fb1d72512..740ee794d7b9 100644
--- a/arch/arm64/boot/dts/ti/k3-j784s4-mcu-wakeup.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-j784s4-mcu-wakeup.dtsi
@@ -441,7 +441,7 @@ mcu_spi2: spi@40320000 {
 		status = "disabled";
 	};
 
-	mcu_navss: bus@28380000{
+	mcu_navss: bus@28380000 {
 		compatible = "simple-bus";
 		#address-cells = <2>;
 		#size-cells = <2>;
-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 1/2] ARM: dts: ti: add missing space before {
  2023-07-05 14:57 [PATCH 1/2] ARM: dts: ti: add missing space before { Krzysztof Kozlowski
  2023-07-05 14:57 ` [PATCH 2/2] arm64: " Krzysztof Kozlowski
@ 2023-07-05 16:22 ` David Lechner
  2023-07-11 13:47 ` (subset) " Nishanth Menon
  2023-07-11 13:50 ` Nishanth Menon
  3 siblings, 0 replies; 7+ messages in thread
From: David Lechner @ 2023-07-05 16:22 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Bartosz Golaszewski, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Nishanth Menon,
	Santosh Shilimkar, Benoît Cousson, Tony Lindgren,
	Vignesh Raghavendra, Tero Kristo, linux-arm-kernel, devicetree,
	linux-kernel, linux-omap

On 7/5/23 9:57 AM, Krzysztof Kozlowski wrote:
> Add missing whitespace between node name/label and opening {.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---

Reviewed-by: David Lechner <david@lechnology.com>



_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 2/2] arm64: dts: ti: add missing space before {
  2023-07-05 14:57 ` [PATCH 2/2] arm64: " Krzysztof Kozlowski
@ 2023-07-05 16:23   ` David Lechner
  0 siblings, 0 replies; 7+ messages in thread
From: David Lechner @ 2023-07-05 16:23 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Bartosz Golaszewski, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Nishanth Menon,
	Santosh Shilimkar, Benoît Cousson, Tony Lindgren,
	Vignesh Raghavendra, Tero Kristo, linux-arm-kernel, devicetree,
	linux-kernel, linux-omap

On 7/5/23 9:57 AM, Krzysztof Kozlowski wrote:
> Add missing whitespace between node name/label and opening {.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---

Reviewed-by: David Lechner <david@lechnology.com>




_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: (subset) [PATCH 1/2] ARM: dts: ti: add missing space before {
  2023-07-05 14:57 [PATCH 1/2] ARM: dts: ti: add missing space before { Krzysztof Kozlowski
  2023-07-05 14:57 ` [PATCH 2/2] arm64: " Krzysztof Kozlowski
  2023-07-05 16:22 ` [PATCH 1/2] ARM: " David Lechner
@ 2023-07-11 13:47 ` Nishanth Menon
  2023-07-11 13:50 ` Nishanth Menon
  3 siblings, 0 replies; 7+ messages in thread
From: Nishanth Menon @ 2023-07-11 13:47 UTC (permalink / raw)
  To: David Lechner, Bartosz Golaszewski, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Santosh Shilimkar,
	Benoît Cousson, Tony Lindgren, Vignesh Raghavendra,
	Tero Kristo, linux-arm-kernel, devicetree, linux-kernel,
	linux-omap, Krzysztof Kozlowski
  Cc: Nishanth Menon

Hi Krzysztof Kozlowski,

On Wed, 05 Jul 2023 16:57:54 +0200, Krzysztof Kozlowski wrote:
> Add missing whitespace between node name/label and opening {.
> 
> 

I have applied the following to branch ti-k3-dts-next on [1].
Thank you!

[2/2] arm64: dts: ti: add missing space before {
      commit: 48a498a269c60cd3ca3de87761a1016aa7de9593

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

[1] git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 1/2] ARM: dts: ti: add missing space before {
  2023-07-05 14:57 [PATCH 1/2] ARM: dts: ti: add missing space before { Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2023-07-11 13:47 ` (subset) " Nishanth Menon
@ 2023-07-11 13:50 ` Nishanth Menon
  2023-07-31  6:15   ` Tony Lindgren
  3 siblings, 1 reply; 7+ messages in thread
From: Nishanth Menon @ 2023-07-11 13:50 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: David Lechner, Bartosz Golaszewski, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Santosh Shilimkar,
	Benoît Cousson, Tony Lindgren, Vignesh Raghavendra,
	Tero Kristo, linux-arm-kernel, devicetree, linux-kernel,
	linux-omap

On 16:57-20230705, Krzysztof Kozlowski wrote:
> Add missing whitespace between node name/label and opening {.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts | 2 +-
>  arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi | 2 +-
>  arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts    | 8 ++++----

Tony: Could you pick this up?

Reviewed-by: Nishanth Menon <nm@ti.com>

>  3 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts b/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
> index afd04a423856..17a1632a8ac1 100644
> --- a/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
> +++ b/arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts
> @@ -391,7 +391,7 @@ &spi1 {
>  	pinctrl-names = "default";
>  	cs-gpios = <&gpio 44 GPIO_ACTIVE_LOW>;
>  
> -	display@0{
> +	display@0 {
>  		compatible = "lego,ev3-lcd";
>  		reg = <0>;
>  		spi-max-frequency = <10000000>;
> diff --git a/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi b/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi
> index 8949578e62e8..2062fe561642 100644
> --- a/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi
> +++ b/arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi
> @@ -137,7 +137,7 @@ uart01_spi2_pins: uart01-spi2-pins {
>  				>;
>  			};
>  
> -			dfesync_rp1_pins: dfesync-rp1-pins{
> +			dfesync_rp1_pins: dfesync-rp1-pins {
>  				pinctrl-single,bits = <
>  					/* DFESYNC_RP1_SEL */
>  					0x0 0x0 0x2
> diff --git a/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts b/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts
> index 863552393c07..edaddc7b6a5e 100644
> --- a/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts
> +++ b/arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts
> @@ -58,7 +58,7 @@ vdd_core: fixed-regulator-vdd_core {
>  		vin-supply = <&vdd_corereg>;
>  	};
>  
> -	v1_8dreg: fixed-regulator-v1_8dreg{
> +	v1_8dreg: fixed-regulator-v1_8dreg {
>  		compatible = "regulator-fixed";
>  		regulator-name = "V1_8DREG";
>  		regulator-min-microvolt = <1800000>;
> @@ -68,7 +68,7 @@ v1_8dreg: fixed-regulator-v1_8dreg{
>  		vin-supply = <&v24_0d>;
>  	};
>  
> -	v1_8d: fixed-regulator-v1_8d{
> +	v1_8d: fixed-regulator-v1_8d {
>  		compatible = "regulator-fixed";
>  		regulator-name = "V1_8D";
>  		regulator-min-microvolt = <1800000>;
> @@ -78,7 +78,7 @@ v1_8d: fixed-regulator-v1_8d{
>  		vin-supply = <&v1_8dreg>;
>  	};
>  
> -	v1_5dreg: fixed-regulator-v1_5dreg{
> +	v1_5dreg: fixed-regulator-v1_5dreg {
>  		compatible = "regulator-fixed";
>  		regulator-name = "V1_5DREG";
>  		regulator-min-microvolt = <1500000>;
> @@ -88,7 +88,7 @@ v1_5dreg: fixed-regulator-v1_5dreg{
>  		vin-supply = <&v24_0d>;
>  	};
>  
> -	v1_5d: fixed-regulator-v1_5d{
> +	v1_5d: fixed-regulator-v1_5d {
>  		compatible = "regulator-fixed";
>  		regulator-name = "V1_5D";
>  		regulator-min-microvolt = <1500000>;
> -- 
> 2.34.1
> 

-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 1/2] ARM: dts: ti: add missing space before {
  2023-07-11 13:50 ` Nishanth Menon
@ 2023-07-31  6:15   ` Tony Lindgren
  0 siblings, 0 replies; 7+ messages in thread
From: Tony Lindgren @ 2023-07-31  6:15 UTC (permalink / raw)
  To: Nishanth Menon
  Cc: Krzysztof Kozlowski, David Lechner, Bartosz Golaszewski,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Santosh Shilimkar,
	Benoît Cousson, Vignesh Raghavendra, Tero Kristo,
	linux-arm-kernel, devicetree, linux-kernel, linux-omap

* Nishanth Menon <nm@ti.com> [230711 16:50]:
> On 16:57-20230705, Krzysztof Kozlowski wrote:
> > Add missing whitespace between node name/label and opening {.
> > 
> > Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> > ---
> >  arch/arm/boot/dts/ti/davinci/da850-lego-ev3.dts | 2 +-
> >  arch/arm/boot/dts/ti/keystone/keystone-k2l.dtsi | 2 +-
> >  arch/arm/boot/dts/ti/omap/am437x-idk-evm.dts    | 8 ++++----
> 
> Tony: Could you pick this up?
> 
> Reviewed-by: Nishanth Menon <nm@ti.com>

Thanks applying into omap-for-v6.6/dt.

Regards,

Tony

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2023-07-31  6:16 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-05 14:57 [PATCH 1/2] ARM: dts: ti: add missing space before { Krzysztof Kozlowski
2023-07-05 14:57 ` [PATCH 2/2] arm64: " Krzysztof Kozlowski
2023-07-05 16:23   ` David Lechner
2023-07-05 16:22 ` [PATCH 1/2] ARM: " David Lechner
2023-07-11 13:47 ` (subset) " Nishanth Menon
2023-07-11 13:50 ` Nishanth Menon
2023-07-31  6:15   ` Tony Lindgren

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