devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Wei Xu <xuwei5@hisilicon.com>
To: Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Conor Dooley <conor+dt@kernel.org>
Cc: <linux-arm-kernel@lists.infradead.org>,
	<devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] ARM: dts: hisilicon: Fix "status" values
Date: Wed, 19 Jul 2023 15:43:29 +0800	[thread overview]
Message-ID: <64B79421.80007@hisilicon.com> (raw)
In-Reply-To: <20230626221019.3946448-1-robh@kernel.org>

Hi Rob,

On 2023/6/27 6:10, Rob Herring wrote:
> The defined value for "status" is "disabled", not "disable".
> 
> Signed-off-by: Rob Herring <robh@kernel.org>

Applied to the HiSilicon arm32 dt tree.
Thanks!

Best Regards,
Wei

> ---
>  arch/arm/boot/dts/hisilicon/hi3519.dtsi | 22 +++++++++++-----------
>  1 file changed, 11 insertions(+), 11 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/hisilicon/hi3519.dtsi b/arch/arm/boot/dts/hisilicon/hi3519.dtsi
> index c524c854d319..a42b71cdc5d7 100644
> --- a/arch/arm/boot/dts/hisilicon/hi3519.dtsi
> +++ b/arch/arm/boot/dts/hisilicon/hi3519.dtsi
> @@ -54,7 +54,7 @@ uart0: serial@12100000 {
>  			interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
>  			clocks = <&crg HI3519_UART0_CLK>, <&crg HI3519_UART0_CLK>;
>  			clock-names = "uartclk", "apb_pclk";
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		uart1: serial@12101000 {
> @@ -63,7 +63,7 @@ uart1: serial@12101000 {
>  			interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
>  			clocks = <&crg HI3519_UART1_CLK>, <&crg HI3519_UART1_CLK>;
>  			clock-names = "uartclk", "apb_pclk";
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		uart2: serial@12102000 {
> @@ -72,7 +72,7 @@ uart2: serial@12102000 {
>  			interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
>  			clocks = <&crg HI3519_UART2_CLK>, <&crg HI3519_UART2_CLK>;
>  			clock-names = "uartclk", "apb_pclk";
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		uart3: serial@12103000 {
> @@ -81,7 +81,7 @@ uart3: serial@12103000 {
>  			interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
>  			clocks = <&crg HI3519_UART3_CLK>, <&crg HI3519_UART3_CLK>;
>  			clock-names = "uartclk", "apb_pclk";
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		uart4: serial@12104000 {
> @@ -90,7 +90,7 @@ uart4: serial@12104000 {
>  			interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>;
>  			clocks = <&crg HI3519_UART4_CLK>, <&crg HI3519_UART4_CLK>;
>  			clock-names = "uartclk", "apb_pclk";
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		dual_timer0: timer@12000000 {
> @@ -100,7 +100,7 @@ dual_timer0: timer@12000000 {
>  			reg = <0x12000000 0x1000>;
>  			clocks = <&clk_3m>;
>  			clock-names = "apb_pclk";
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		dual_timer1: timer@12001000 {
> @@ -110,7 +110,7 @@ dual_timer1: timer@12001000 {
>  			reg = <0x12001000 0x1000>;
>  			clocks = <&clk_3m>;
>  			clock-names = "apb_pclk";
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		dual_timer2: timer@12002000 {
> @@ -120,7 +120,7 @@ dual_timer2: timer@12002000 {
>  			reg = <0x12002000 0x1000>;
>  			clocks = <&clk_3m>;
>  			clock-names = "apb_pclk";
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		spi_bus0: spi@12120000 {
> @@ -132,7 +132,7 @@ spi_bus0: spi@12120000 {
>  			num-cs = <1>;
>  			#address-cells = <1>;
>  			#size-cells = <0>;
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		spi_bus1: spi@12121000 {
> @@ -144,7 +144,7 @@ spi_bus1: spi@12121000 {
>  			num-cs = <1>;
>  			#address-cells = <1>;
>  			#size-cells = <0>;
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		spi_bus2: spi@12122000 {
> @@ -156,7 +156,7 @@ spi_bus2: spi@12122000 {
>  			num-cs = <1>;
>  			#address-cells = <1>;
>  			#size-cells = <0>;
> -			status = "disable";
> +			status = "disabled";
>  		};
>  
>  		sysctrl: system-controller@12020000 {
> 

      parent reply	other threads:[~2023-07-19  7:44 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-26 22:10 [PATCH] ARM: dts: hisilicon: Fix "status" values Rob Herring
2023-07-18 16:22 ` Rob Herring
2023-07-19  7:43 ` 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=64B79421.80007@hisilicon.com \
    --to=xuwei5@hisilicon.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh@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).