linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Lukasz Majewski <lukma@denx.de>
To: Fabio Estevam <festevam@gmail.com>
Cc: shawnguo@kernel.org, robh@kernel.org, krzk+dt@kernel.org,
	conor+dt@kernel.org, devicetree@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Fabio Estevam <festevam@denx.de>
Subject: Re: [PATCH] ARM: dts: imx23/8: Rename apbh and apbx nodes
Date: Thu, 29 Aug 2024 11:08:23 +0200	[thread overview]
Message-ID: <20240829110823.4720bd02@wsk> (raw)
In-Reply-To: <20240828194919.3192996-1-festevam@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 6616 bytes --]

On Wed, 28 Aug 2024 16:49:19 -0300
Fabio Estevam <festevam@gmail.com> wrote:

> From: Fabio Estevam <festevam@denx.de>
> 
> According to simple-bus.yaml, apbh and apbx are not valid bus names.
> 
> Rename them to apbh-bus and apbx-bus to fix the following dt-schema
> warnings:
> 
> 'apbh@80000000' does not match
> '^([a-z][a-z0-9\\-]+-bus|bus|localbus|soc|axi|ahb|apb)(@.+)?$'
> 'apbx@80040000' does not match
> '^([a-z][a-z0-9\\-]+-bus|bus|localbus|soc|axi|ahb|apb)(@.+)?$'
> 
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> ---
>  arch/arm/boot/dts/nxp/mxs/imx23-evk.dts           | 4 ++--
>  arch/arm/boot/dts/nxp/mxs/imx23-olinuxino.dts     | 4 ++--
>  arch/arm/boot/dts/nxp/mxs/imx23-sansa.dts         | 4 ++--
>  arch/arm/boot/dts/nxp/mxs/imx23-stmp378x_devb.dts | 4 ++--
>  arch/arm/boot/dts/nxp/mxs/imx23-xfi3.dts          | 4 ++--
>  arch/arm/boot/dts/nxp/mxs/imx23.dtsi              | 4 ++--
>  arch/arm/boot/dts/nxp/mxs/imx28-cfa10037.dts      | 2 +-
>  arch/arm/boot/dts/nxp/mxs/imx28.dtsi              | 4 ++--
>  8 files changed, 15 insertions(+), 15 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/nxp/mxs/imx23-evk.dts
> b/arch/arm/boot/dts/nxp/mxs/imx23-evk.dts index
> 7365fe4581a3..33b36af1656f 100644 ---
> a/arch/arm/boot/dts/nxp/mxs/imx23-evk.dts +++
> b/arch/arm/boot/dts/nxp/mxs/imx23-evk.dts @@ -52,7 +52,7 @@ panel_in:
> endpoint { };
>  
>  	apb@80000000 {
> -		apbh@80000000 {
> +		apbh-bus@80000000 {
>  			nand-controller@8000c000 {
>  				pinctrl-names = "default";
>  				pinctrl-0 = <&gpmi_pins_a
> &gpmi_pins_fixup>; @@ -99,7 +99,7 @@ display_out: endpoint {
>  			};
>  		};
>  
> -		apbx@80040000 {
> +		apbx-bus@80040000 {
>  			lradc@80050000 {
>  				status = "okay";
>  				fsl,lradc-touchscreen-wires = <4>;
> diff --git a/arch/arm/boot/dts/nxp/mxs/imx23-olinuxino.dts
> b/arch/arm/boot/dts/nxp/mxs/imx23-olinuxino.dts index
> 229e727b222e..e372e9327a47 100644 ---
> a/arch/arm/boot/dts/nxp/mxs/imx23-olinuxino.dts +++
> b/arch/arm/boot/dts/nxp/mxs/imx23-olinuxino.dts @@ -19,7 +19,7 @@
> memory@40000000 { };
>  
>  	apb@80000000 {
> -		apbh@80000000 {
> +		apbh-bus@80000000 {
>  			ssp0: spi@80010000 {
>  				compatible = "fsl,imx23-mmc";
>  				pinctrl-names = "default";
> @@ -64,7 +64,7 @@ ssp1: spi@80034000 {
>  			};
>  		};
>  
> -		apbx@80040000 {
> +		apbx-bus@80040000 {
>  			lradc@80050000 {
>  				status = "okay";
>  			};
> diff --git a/arch/arm/boot/dts/nxp/mxs/imx23-sansa.dts
> b/arch/arm/boot/dts/nxp/mxs/imx23-sansa.dts index
> b23e7ada9c80..cb661bf2d157 100644 ---
> a/arch/arm/boot/dts/nxp/mxs/imx23-sansa.dts +++
> b/arch/arm/boot/dts/nxp/mxs/imx23-sansa.dts @@ -55,7 +55,7 @@
> memory@40000000 { };
>  
>  	apb@80000000 {
> -		apbh@80000000 {
> +		apbh-bus@80000000 {
>  			ssp0: spi@80010000 {
>  				compatible = "fsl,imx23-mmc";
>  				pinctrl-names = "default";
> @@ -100,7 +100,7 @@ MX23_PAD_PWM3__GPIO_1_29
>  			};
>  		};
>  
> -		apbx@80040000 {
> +		apbx-bus@80040000 {
>  			pwm: pwm@80064000 {
>  				pinctrl-names = "default";
>  				pinctrl-0 = <&pwm2_pins_a>;
> diff --git a/arch/arm/boot/dts/nxp/mxs/imx23-stmp378x_devb.dts
> b/arch/arm/boot/dts/nxp/mxs/imx23-stmp378x_devb.dts index
> 69124ba6a666..b2b6f8514999 100644 ---
> a/arch/arm/boot/dts/nxp/mxs/imx23-stmp378x_devb.dts +++
> b/arch/arm/boot/dts/nxp/mxs/imx23-stmp378x_devb.dts @@ -16,7 +16,7 @@
> memory@40000000 { };
>  
>  	apb@80000000 {
> -		apbh@80000000 {
> +		apbh-bus@80000000 {
>  			ssp0: spi@80010000 {
>  				compatible = "fsl,imx23-mmc";
>  				pinctrl-names = "default";
> @@ -44,7 +44,7 @@ MX23_PAD_PWM4__GPIO_1_30
>  			};
>  		};
>  
> -		apbx@80040000 {
> +		apbx-bus@80040000 {
>  			auart0: serial@8006c000 {
>  				pinctrl-names = "default";
>  				pinctrl-0 = <&auart0_pins_a>;
> diff --git a/arch/arm/boot/dts/nxp/mxs/imx23-xfi3.dts
> b/arch/arm/boot/dts/nxp/mxs/imx23-xfi3.dts index
> 28341d8315c2..0b088c8ab6b6 100644 ---
> a/arch/arm/boot/dts/nxp/mxs/imx23-xfi3.dts +++
> b/arch/arm/boot/dts/nxp/mxs/imx23-xfi3.dts @@ -54,7 +54,7 @@
> memory@40000000 { };
>  
>  	apb@80000000 {
> -		apbh@80000000 {
> +		apbh-bus@80000000 {
>  			ssp0: spi@80010000 {
>  				compatible = "fsl,imx23-mmc";
>  				pinctrl-names = "default";
> @@ -101,7 +101,7 @@ MX23_PAD_ROTARYB__GPIO_2_8
>  			};
>  		};
>  
> -		apbx@80040000 {
> +		apbx-bus@80040000 {
>  			i2c: i2c@80058000 {
>  				pinctrl-names = "default";
>  				pinctrl-0 = <&i2c_pins_a>;
> diff --git a/arch/arm/boot/dts/nxp/mxs/imx23.dtsi
> b/arch/arm/boot/dts/nxp/mxs/imx23.dtsi index
> 0309592af1e1..5e21252fb7c9 100644 ---
> a/arch/arm/boot/dts/nxp/mxs/imx23.dtsi +++
> b/arch/arm/boot/dts/nxp/mxs/imx23.dtsi @@ -45,7 +45,7 @@ apb@80000000
> { reg = <0x80000000 0x80000>;
>  		ranges;
>  
> -		apbh@80000000 {
> +		apbh-bus@80000000 {
>  			compatible = "simple-bus";
>  			#address-cells = <1>;
>  			#size-cells = <1>;
> @@ -476,7 +476,7 @@ tvenc@80038000 {
>  			};
>  		};
>  
> -		apbx@80040000 {
> +		apbx-bus@80040000 {
>  			compatible = "simple-bus";
>  			#address-cells = <1>;
>  			#size-cells = <1>;
> diff --git a/arch/arm/boot/dts/nxp/mxs/imx28-cfa10037.dts
> b/arch/arm/boot/dts/nxp/mxs/imx28-cfa10037.dts index
> c72fe2d392f1..9053472ed6b9 100644 ---
> a/arch/arm/boot/dts/nxp/mxs/imx28-cfa10037.dts +++
> b/arch/arm/boot/dts/nxp/mxs/imx28-cfa10037.dts @@ -38,7 +38,7 @@
> MX28_PAD_SSP2_SS2__GPIO_2_21 };
>  		};
>  
> -		apbx@80040000 {
> +		apbx-bus@80040000 {
>  			usbphy1: usbphy@8007e000 {
>  				status = "okay";
>  			};
> diff --git a/arch/arm/boot/dts/nxp/mxs/imx28.dtsi
> b/arch/arm/boot/dts/nxp/mxs/imx28.dtsi index
> 4817fba2d938..bbea8b77386f 100644 ---
> a/arch/arm/boot/dts/nxp/mxs/imx28.dtsi +++
> b/arch/arm/boot/dts/nxp/mxs/imx28.dtsi @@ -56,7 +56,7 @@ apb@80000000
> { reg = <0x80000000 0x80000>;
>  		ranges;
>  
> -		apbh@80000000 {
> +		apbh-bus@80000000 {
>  			compatible = "simple-bus";
>  			#address-cells = <1>;
>  			#size-cells = <1>;
> @@ -1092,7 +1092,7 @@ armjtag: armjtag@8003c800 {
>  			};
>  		};
>  
> -		apbx@80040000 {
> +		apbx-bus@80040000 {
>  			compatible = "simple-bus";
>  			#address-cells = <1>;
>  			#size-cells = <1>;

Reviewed-by: Lukasz Majewski <lukma@denx.de>


Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Erika Unter
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

  reply	other threads:[~2024-08-29  9:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-28 19:49 [PATCH] ARM: dts: imx23/8: Rename apbh and apbx nodes Fabio Estevam
2024-08-29  9:08 ` Lukasz Majewski [this message]
2024-09-02  0:25 ` Shawn Guo
2024-09-03  8:23 ` Shawn Guo

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=20240829110823.4720bd02@wsk \
    --to=lukma@denx.de \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@denx.de \
    --cc=festevam@gmail.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=robh@kernel.org \
    --cc=shawnguo@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).