mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Alim Akhtar" <alim.akhtar@samsung.com>
To: "'Krzysztof Kozlowski'" <krzysztof.kozlowski@linaro.org>,
	"'Rob Herring'" <robh+dt@kernel.org>,
	"'Krzysztof Kozlowski'" <krzysztof.kozlowski+dt@linaro.org>,
	<devicetree@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-samsung-soc@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>
Subject: RE: [PATCH 2/2] ARM: dts: exynos: adjust whitespace around '='
Date: Fri, 27 May 2022 07:53:03 +0530	[thread overview]
Message-ID: <025501d87170$b302a340$1907e9c0$@samsung.com> (raw)
In-Reply-To: <20220526204323.832243-2-krzysztof.kozlowski@linaro.org>



>-----Original Message-----
>From: Krzysztof Kozlowski [mailto:krzysztof.kozlowski@linaro.org]
>Sent: Friday, May 27, 2022 2:13 AM
>To: Rob Herring <robh+dt@kernel.org>; Krzysztof Kozlowski
><krzysztof.kozlowski+dt@linaro.org>; Alim Akhtar
><alim.akhtar@samsung.com>; devicetree@vger.kernel.org; linux-arm-
>kernel@lists.infradead.org; linux-samsung-soc@vger.kernel.org; linux-
>kernel@vger.kernel.org
>Cc: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
>Subject: [PATCH 2/2] ARM: dts: exynos: adjust whitespace around '='
>
>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>
>
Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com>

>---
>
>Output compared with dtx_diff and fdtdump.
>---
> arch/arm/boot/dts/exynos3250-artik5.dtsi    | 2 +-
> arch/arm/boot/dts/exynos4210-trats.dts      | 2 +-
> arch/arm/boot/dts/exynos4412-galaxy-s3.dtsi | 2 +-
> arch/arm/boot/dts/exynos5.dtsi              | 2 +-
> 4 files changed, 4 insertions(+), 4 deletions(-)
>
>diff --git a/arch/arm/boot/dts/exynos3250-artik5.dtsi
>b/arch/arm/boot/dts/exynos3250-artik5.dtsi
>index 7b429622a288..0ac3f284fbb8 100644
>--- a/arch/arm/boot/dts/exynos3250-artik5.dtsi
>+++ b/arch/arm/boot/dts/exynos3250-artik5.dtsi
>@@ -357,7 +357,7 @@ &mshc_1 {
>
> &pinctrl_1 {
> 	bten: bten-pins {
>-		samsung,pins ="gpx1-7";
>+		samsung,pins = "gpx1-7";
> 		samsung,pin-function = <EXYNOS_PIN_FUNC_OUTPUT>;
> 		samsung,pin-pud = <EXYNOS_PIN_PULL_DOWN>;
> 		samsung,pin-con-pdn = <EXYNOS_PIN_PDN_PREV>; diff --git
>a/arch/arm/boot/dts/exynos4210-trats.dts
>b/arch/arm/boot/dts/exynos4210-trats.dts
>index 01f44d95f671..b8e9dd23fc51 100644
>--- a/arch/arm/boot/dts/exynos4210-trats.dts
>+++ b/arch/arm/boot/dts/exynos4210-trats.dts
>@@ -180,7 +180,7 @@ panel@0 {
> 		vdd3-supply = <&vcclcd_reg>;
> 		vci-supply = <&vlcd_reg>;
> 		reset-gpios = <&gpy4 5 GPIO_ACTIVE_HIGH>;
>-		power-on-delay= <50>;
>+		power-on-delay = <50>;
> 		reset-delay = <100>;
> 		init-delay = <100>;
> 		flip-horizontal;
>diff --git a/arch/arm/boot/dts/exynos4412-galaxy-s3.dtsi
>b/arch/arm/boot/dts/exynos4412-galaxy-s3.dtsi
>index 03dffc690b79..aa7de6de8e19 100644
>--- a/arch/arm/boot/dts/exynos4412-galaxy-s3.dtsi
>+++ b/arch/arm/boot/dts/exynos4412-galaxy-s3.dtsi
>@@ -107,7 +107,7 @@ panel@0 {
> 		vdd3-supply = <&lcd_vdd3_reg>;
> 		vci-supply = <&ldo25_reg>;
> 		reset-gpios = <&gpf2 1 GPIO_ACTIVE_HIGH>;
>-		power-on-delay= <50>;
>+		power-on-delay = <50>;
> 		reset-delay = <100>;
> 		init-delay = <100>;
> 		flip-horizontal;
>diff --git a/arch/arm/boot/dts/exynos5.dtsi
>b/arch/arm/boot/dts/exynos5.dtsi index 9ce9fb3fc190..c8da0d4b1b33 100644
>--- a/arch/arm/boot/dts/exynos5.dtsi
>+++ b/arch/arm/boot/dts/exynos5.dtsi
>@@ -89,7 +89,7 @@ gic: interrupt-controller@10481000 {
> 			compatible = "arm,gic-400", "arm,cortex-a15-gic";
> 			#interrupt-cells = <3>;
> 			interrupt-controller;
>-			reg =	<0x10481000 0x1000>,
>+			reg = <0x10481000 0x1000>,
> 				<0x10482000 0x2000>,
> 				<0x10484000 0x2000>,
> 				<0x10486000 0x2000>;
>--
>2.34.1



  reply	other threads:[~2022-05-27  2:23 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20220526204417epcas2p44f9bcd1f7917389f6346464085634e66@epcas2p4.samsung.com>
2022-05-26 20:43 ` [PATCH 1/2] arm64: " Krzysztof Kozlowski
2022-05-26 20:43   ` [PATCH 2/2] ARM: " Krzysztof Kozlowski
2022-05-27  2:23     ` Alim Akhtar [this message]
2022-05-26 23:41   ` [PATCH 1/2] arm64: " Chanho Park
2022-05-27  2:23   ` Alim Akhtar
2022-06-07  6:32   ` Krzysztof Kozlowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='025501d87170$b302a340$1907e9c0$@samsung.com' \
    --to=alim.akhtar@samsung.com \
    --cc=devicetree@vger.kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=krzysztof.kozlowski@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®