devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] arm64: dts: broadcom: adjust whitespace around '='
@ 2022-05-26 20:43 Krzysztof Kozlowski
  2022-05-26 20:43 ` [PATCH 2/2] ARM: " Krzysztof Kozlowski
  2022-06-08  9:12 ` [PATCH 1/2] arm64: " Florian Fainelli
  0 siblings, 2 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2022-05-26 20:43 UTC (permalink / raw)
  To: Arnd Bergmann, Olof Johansson, arm, soc, Rob Herring,
	Krzysztof Kozlowski, Ray Jui, Scott Branden,
	Broadcom internal kernel review list, devicetree,
	linux-arm-kernel, linux-kernel
  Cc: Krzysztof Kozlowski

Fix whitespace coding style: use single space instead of tabs or
multiple spaces around '=' sign in property assignment.  No functional
changes (same DTB).

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

---

Output compared with dtx_diff and fdtdump.
---
 arch/arm64/boot/dts/broadcom/stingray/stingray.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/broadcom/stingray/stingray.dtsi b/arch/arm64/boot/dts/broadcom/stingray/stingray.dtsi
index 09d4aa8ae1d6..8f8c25e51194 100644
--- a/arch/arm64/boot/dts/broadcom/stingray/stingray.dtsi
+++ b/arch/arm64/boot/dts/broadcom/stingray/stingray.dtsi
@@ -567,7 +567,7 @@ enet: ethernet@340000{
 			reg-names = "amac_base";
 			dma-coherent;
 			interrupts = <GIC_SPI 213 IRQ_TYPE_LEVEL_HIGH>;
-			status= "disabled";
+			status = "disabled";
 		};
 
 		nand: nand@360000 {
-- 
2.34.1


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

* [PATCH 2/2] ARM: dts: broadcom: adjust whitespace around '='
  2022-05-26 20:43 [PATCH 1/2] arm64: dts: broadcom: adjust whitespace around '=' Krzysztof Kozlowski
@ 2022-05-26 20:43 ` Krzysztof Kozlowski
  2022-06-08  9:12   ` Florian Fainelli
  2022-06-08  9:12 ` [PATCH 1/2] arm64: " Florian Fainelli
  1 sibling, 1 reply; 4+ messages in thread
From: Krzysztof Kozlowski @ 2022-05-26 20:43 UTC (permalink / raw)
  To: Arnd Bergmann, Olof Johansson, arm, soc, Rob Herring,
	Krzysztof Kozlowski, Nicolas Saenz Julienne,
	Broadcom internal kernel review list, Florian Fainelli, Ray Jui,
	Scott Branden, Hauke Mehrtens, Rafał Miłecki,
	devicetree, linux-rpi-kernel, linux-arm-kernel, linux-kernel
  Cc: Krzysztof Kozlowski

Fix whitespace coding style: use single space instead of tabs or
multiple spaces around '=' sign in property assignment.  No functional
changes (same DTB).

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

---

Output compared with dtx_diff and fdtdump.
---
 arch/arm/boot/dts/bcm28155-ap.dts | 8 ++++----
 arch/arm/boot/dts/bcm283x.dtsi    | 6 +++---
 arch/arm/boot/dts/bcm5301x.dtsi   | 6 +++---
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/arch/arm/boot/dts/bcm28155-ap.dts b/arch/arm/boot/dts/bcm28155-ap.dts
index ead6e9804dbf..78465ad37c5f 100644
--- a/arch/arm/boot/dts/bcm28155-ap.dts
+++ b/arch/arm/boot/dts/bcm28155-ap.dts
@@ -31,22 +31,22 @@ uart@3e000000 {
 	};
 
 	i2c@3e016000 {
-		status="okay";
+		status = "okay";
 		clock-frequency = <400000>;
 	};
 
 	i2c@3e017000 {
-		status="okay";
+		status = "okay";
 		clock-frequency = <400000>;
 	};
 
 	i2c@3e018000 {
-		status="okay";
+		status = "okay";
 		clock-frequency = <400000>;
 	};
 
 	i2c@3500d000 {
-		status="okay";
+		status = "okay";
 		clock-frequency = <100000>;
 
 		pmu: pmu@8 {
diff --git a/arch/arm/boot/dts/bcm283x.dtsi b/arch/arm/boot/dts/bcm283x.dtsi
index c113661a6668..2718e1033929 100644
--- a/arch/arm/boot/dts/bcm283x.dtsi
+++ b/arch/arm/boot/dts/bcm283x.dtsi
@@ -50,9 +50,9 @@ cpu_thermal: cpu-thermal {
 
 			trips {
 				cpu-crit {
-					temperature	= <90000>;
-					hysteresis	= <0>;
-					type		= "critical";
+					temperature = <90000>;
+					hysteresis = <0>;
+					type = "critical";
 				};
 			};
 
diff --git a/arch/arm/boot/dts/bcm5301x.dtsi b/arch/arm/boot/dts/bcm5301x.dtsi
index 65f8a759f1e3..5fc1b847f4aa 100644
--- a/arch/arm/boot/dts/bcm5301x.dtsi
+++ b/arch/arm/boot/dts/bcm5301x.dtsi
@@ -568,9 +568,9 @@ cpu_thermal: cpu-thermal {
 
 			trips {
 				cpu-crit {
-					temperature	= <125000>;
-					hysteresis	= <0>;
-					type		= "critical";
+					temperature = <125000>;
+					hysteresis = <0>;
+					type = "critical";
 				};
 			};
 
-- 
2.34.1


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

* Re: [PATCH 1/2] arm64: dts: broadcom: adjust whitespace around '='
  2022-05-26 20:43 [PATCH 1/2] arm64: dts: broadcom: adjust whitespace around '=' Krzysztof Kozlowski
  2022-05-26 20:43 ` [PATCH 2/2] ARM: " Krzysztof Kozlowski
@ 2022-06-08  9:12 ` Florian Fainelli
  1 sibling, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2022-06-08  9:12 UTC (permalink / raw)
  To: bcm-kernel-feedback-list, Krzysztof Kozlowski, Arnd Bergmann,
	Olof Johansson, arm, soc, Rob Herring, Krzysztof Kozlowski,
	Ray Jui, Scott Branden, devicetree, linux-arm-kernel,
	linux-kernel

On Thu, 26 May 2022 22:43:38 +0200, Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> wrote:
> Fix whitespace coding style: use single space instead of tabs or
> multiple spaces around '=' sign in property assignment.  No functional
> changes (same DTB).
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> 
> ---

Applied to https://github.com/Broadcom/stblinux/commits/devicetree-arm64/next, thanks!
--
Florian

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

* Re: [PATCH 2/2] ARM: dts: broadcom: adjust whitespace around '='
  2022-05-26 20:43 ` [PATCH 2/2] ARM: " Krzysztof Kozlowski
@ 2022-06-08  9:12   ` Florian Fainelli
  0 siblings, 0 replies; 4+ messages in thread
From: Florian Fainelli @ 2022-06-08  9:12 UTC (permalink / raw)
  To: bcm-kernel-feedback-list, Krzysztof Kozlowski, Arnd Bergmann,
	Olof Johansson, arm, soc, Rob Herring, Krzysztof Kozlowski,
	Nicolas Saenz Julienne, Ray Jui, Scott Branden, Hauke Mehrtens,
	Rafał Miłecki, devicetree, linux-rpi-kernel,
	linux-arm-kernel, linux-kernel

On Thu, 26 May 2022 22:43:39 +0200, Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> wrote:
> Fix whitespace coding style: use single space instead of tabs or
> multiple spaces around '=' sign in property assignment.  No functional
> changes (same DTB).
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> 
> ---

Applied to https://github.com/Broadcom/stblinux/commits/devicetree/next, thanks!
--
Florian

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

end of thread, other threads:[~2022-06-08  9:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-26 20:43 [PATCH 1/2] arm64: dts: broadcom: adjust whitespace around '=' Krzysztof Kozlowski
2022-05-26 20:43 ` [PATCH 2/2] ARM: " Krzysztof Kozlowski
2022-06-08  9:12   ` Florian Fainelli
2022-06-08  9:12 ` [PATCH 1/2] arm64: " Florian Fainelli

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