devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Wei Xu <xuwei5@hisilicon.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Conor Dooley <conor+dt@kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] arm64: dts: hisilicon: add missing space before {
Date: Thu, 20 Jul 2023 19:19:53 +0800	[thread overview]
Message-ID: <64B91859.8060407@hisilicon.com> (raw)
In-Reply-To: <20230705145925.293447-1-krzysztof.kozlowski@linaro.org>

Hi Krzysztof,

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

Applied to the HiSilicon arm64 dt tree.
Thanks!

Best Regards,
Wei

> ---
>  arch/arm64/boot/dts/hisilicon/hi6220.dtsi | 2 +-
>  arch/arm64/boot/dts/hisilicon/hip06.dtsi  | 8 ++++----
>  arch/arm64/boot/dts/hisilicon/hip07.dtsi  | 8 ++++----
>  3 files changed, 9 insertions(+), 9 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/hisilicon/hi6220.dtsi b/arch/arm64/boot/dts/hisilicon/hi6220.dtsi
> index f29a3e471288..be808bb2544e 100644
> --- a/arch/arm64/boot/dts/hisilicon/hi6220.dtsi
> +++ b/arch/arm64/boot/dts/hisilicon/hi6220.dtsi
> @@ -861,7 +861,7 @@ tsensor: tsensor@0,f7030700 {
>  			#thermal-sensor-cells = <1>;
>  		};
>  
> -		i2s0: i2s@f7118000{
> +		i2s0: i2s@f7118000 {
>  			compatible = "hisilicon,hi6210-i2s";
>  			reg = <0x0 0xf7118000 0x0 0x8000>; /* i2s unit */
>  			interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>; /* 155 "DigACodec_intr"-32 */
> diff --git a/arch/arm64/boot/dts/hisilicon/hip06.dtsi b/arch/arm64/boot/dts/hisilicon/hip06.dtsi
> index c588848bfdeb..f46c33d10750 100644
> --- a/arch/arm64/boot/dts/hisilicon/hip06.dtsi
> +++ b/arch/arm64/boot/dts/hisilicon/hip06.dtsi
> @@ -570,7 +570,7 @@ port@5 {
>  			};
>  		};
>  
> -		eth0: ethernet-4{
> +		eth0: ethernet-4 {
>  			compatible = "hisilicon,hns-nic-v2";
>  			ae-handle = <&dsaf0>;
>  			port-idx-in-ae = <4>;
> @@ -579,7 +579,7 @@ eth0: ethernet-4{
>  			dma-coherent;
>  		};
>  
> -		eth1: ethernet-5{
> +		eth1: ethernet-5 {
>  			compatible = "hisilicon,hns-nic-v2";
>  			ae-handle = <&dsaf0>;
>  			port-idx-in-ae = <5>;
> @@ -588,7 +588,7 @@ eth1: ethernet-5{
>  			dma-coherent;
>  		};
>  
> -		eth2: ethernet-0{
> +		eth2: ethernet-0 {
>  			compatible = "hisilicon,hns-nic-v2";
>  			ae-handle = <&dsaf0>;
>  			port-idx-in-ae = <0>;
> @@ -597,7 +597,7 @@ eth2: ethernet-0{
>  			dma-coherent;
>  		};
>  
> -		eth3: ethernet-1{
> +		eth3: ethernet-1 {
>  			compatible = "hisilicon,hns-nic-v2";
>  			ae-handle = <&dsaf0>;
>  			port-idx-in-ae = <1>;
> diff --git a/arch/arm64/boot/dts/hisilicon/hip07.dtsi b/arch/arm64/boot/dts/hisilicon/hip07.dtsi
> index 595abe339c5d..81d907ef43ed 100644
> --- a/arch/arm64/boot/dts/hisilicon/hip07.dtsi
> +++ b/arch/arm64/boot/dts/hisilicon/hip07.dtsi
> @@ -1483,7 +1483,7 @@ port@5 {
>  			};
>  		};
>  
> -		eth0: ethernet@4{
> +		eth0: ethernet@4 {
>  			compatible = "hisilicon,hns-nic-v2";
>  			ae-handle = <&dsaf0>;
>  			port-idx-in-ae = <4>;
> @@ -1492,7 +1492,7 @@ eth0: ethernet@4{
>  			dma-coherent;
>  		};
>  
> -		eth1: ethernet@5{
> +		eth1: ethernet@5 {
>  			compatible = "hisilicon,hns-nic-v2";
>  			ae-handle = <&dsaf0>;
>  			port-idx-in-ae = <5>;
> @@ -1501,7 +1501,7 @@ eth1: ethernet@5{
>  			dma-coherent;
>  		};
>  
> -		eth2: ethernet@0{
> +		eth2: ethernet@0 {
>  			compatible = "hisilicon,hns-nic-v2";
>  			ae-handle = <&dsaf0>;
>  			port-idx-in-ae = <0>;
> @@ -1510,7 +1510,7 @@ eth2: ethernet@0{
>  			dma-coherent;
>  		};
>  
> -		eth3: ethernet@1{
> +		eth3: ethernet@1 {
>  			compatible = "hisilicon,hns-nic-v2";
>  			ae-handle = <&dsaf0>;
>  			port-idx-in-ae = <1>;
> 

      reply	other threads:[~2023-07-20 11:19 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-05 14:59 [PATCH] arm64: dts: hisilicon: add missing space before { Krzysztof Kozlowski
2023-07-20 11:19 ` Wei Xu [this message]

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=64B91859.8060407@hisilicon.com \
    --to=xuwei5@hisilicon.com \
    --cc=conor+dt@kernel.org \
    --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=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;
as well as URLs for NNTP newsgroup(s).