* [PATCH 1/2] arm64: dts: imx93: update gpio node name to align with register address
@ 2023-11-15 3:56 haibo.chen
2023-11-15 3:56 ` [PATCH 2/2] arm64: dts: imx8ulp: " haibo.chen
2023-12-06 1:14 ` [PATCH 1/2] arm64: dts: imx93: " Shawn Guo
0 siblings, 2 replies; 4+ messages in thread
From: haibo.chen @ 2023-11-15 3:56 UTC (permalink / raw)
To: robh+dt, krzysztof.kozlowski+dt, conor+dt, shawnguo, s.hauer
Cc: kernel, festevam, linux-imx, peng.fan, devicetree
From: Haibo Chen <haibo.chen@nxp.com>
Change the gpio node name to align with register address
Fixes: c1d0782b5fc3 ("arm64: dts: imx93: update gpio node")
Signed-off-by: Haibo Chen <haibo.chen@nxp.com>
---
arch/arm64/boot/dts/freescale/imx93.dtsi | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/arch/arm64/boot/dts/freescale/imx93.dtsi b/arch/arm64/boot/dts/freescale/imx93.dtsi
index ceccf4766440..9f5d88cf2445 100644
--- a/arch/arm64/boot/dts/freescale/imx93.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx93.dtsi
@@ -957,7 +957,7 @@ usdhc3: mmc@428b0000 {
};
};
- gpio2: gpio@43810080 {
+ gpio2: gpio@43810000 {
compatible = "fsl,imx93-gpio", "fsl,imx8ulp-gpio";
reg = <0x43810000 0x1000>;
gpio-controller;
@@ -972,7 +972,7 @@ gpio2: gpio@43810080 {
gpio-ranges = <&iomuxc 0 4 30>;
};
- gpio3: gpio@43820080 {
+ gpio3: gpio@43820000 {
compatible = "fsl,imx93-gpio", "fsl,imx8ulp-gpio";
reg = <0x43820000 0x1000>;
gpio-controller;
@@ -988,7 +988,7 @@ gpio3: gpio@43820080 {
<&iomuxc 26 34 2>, <&iomuxc 28 0 4>;
};
- gpio4: gpio@43830080 {
+ gpio4: gpio@43830000 {
compatible = "fsl,imx93-gpio", "fsl,imx8ulp-gpio";
reg = <0x43830000 0x1000>;
gpio-controller;
@@ -1003,7 +1003,7 @@ gpio4: gpio@43830080 {
gpio-ranges = <&iomuxc 0 38 28>, <&iomuxc 28 36 2>;
};
- gpio1: gpio@47400080 {
+ gpio1: gpio@47400000 {
compatible = "fsl,imx93-gpio", "fsl,imx8ulp-gpio";
reg = <0x47400000 0x1000>;
gpio-controller;
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 2/2] arm64: dts: imx8ulp: update gpio node name to align with register address
2023-11-15 3:56 [PATCH 1/2] arm64: dts: imx93: update gpio node name to align with register address haibo.chen
@ 2023-11-15 3:56 ` haibo.chen
2023-11-15 12:33 ` Marco Felsch
2023-12-06 1:14 ` [PATCH 1/2] arm64: dts: imx93: " Shawn Guo
1 sibling, 1 reply; 4+ messages in thread
From: haibo.chen @ 2023-11-15 3:56 UTC (permalink / raw)
To: robh+dt, krzysztof.kozlowski+dt, conor+dt, shawnguo, s.hauer
Cc: kernel, festevam, linux-imx, peng.fan, devicetree
From: Haibo Chen <haibo.chen@nxp.com>
Change the gpio node name to align with register address.
Fixes: ac7bcf48ddba ("arm64: dts: imx8ulp: update gpio node")
Signed-off-by: Haibo Chen <haibo.chen@nxp.com>
---
arch/arm64/boot/dts/freescale/imx8ulp.dtsi | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm64/boot/dts/freescale/imx8ulp.dtsi b/arch/arm64/boot/dts/freescale/imx8ulp.dtsi
index f22c1ac391c9..c4a0082f30d3 100644
--- a/arch/arm64/boot/dts/freescale/imx8ulp.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx8ulp.dtsi
@@ -483,7 +483,7 @@ fec: ethernet@29950000 {
};
};
- gpioe: gpio@2d000080 {
+ gpioe: gpio@2d000000 {
compatible = "fsl,imx8ulp-gpio";
reg = <0x2d000000 0x1000>;
gpio-controller;
@@ -498,7 +498,7 @@ gpioe: gpio@2d000080 {
gpio-ranges = <&iomuxc1 0 32 24>;
};
- gpiof: gpio@2d010080 {
+ gpiof: gpio@2d010000 {
compatible = "fsl,imx8ulp-gpio";
reg = <0x2d010000 0x1000>;
gpio-controller;
@@ -534,7 +534,7 @@ pcc5: clock-controller@2da70000 {
};
};
- gpiod: gpio@2e200080 {
+ gpiod: gpio@2e200000 {
compatible = "fsl,imx8ulp-gpio";
reg = <0x2e200000 0x1000>;
gpio-controller;
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 2/2] arm64: dts: imx8ulp: update gpio node name to align with register address
2023-11-15 3:56 ` [PATCH 2/2] arm64: dts: imx8ulp: " haibo.chen
@ 2023-11-15 12:33 ` Marco Felsch
0 siblings, 0 replies; 4+ messages in thread
From: Marco Felsch @ 2023-11-15 12:33 UTC (permalink / raw)
To: haibo.chen
Cc: robh+dt, krzysztof.kozlowski+dt, conor+dt, shawnguo, s.hauer,
devicetree, peng.fan, festevam, linux-imx, kernel
On 23-11-15, haibo.chen@nxp.com wrote:
> From: Haibo Chen <haibo.chen@nxp.com>
>
> Change the gpio node name to align with register address.
good catch.
> Fixes: ac7bcf48ddba ("arm64: dts: imx8ulp: update gpio node")
> Signed-off-by: Haibo Chen <haibo.chen@nxp.com>
Feel free to add my r-b for both:
Reviewed-by: Marco Felsch <m.felsch@pengutronix.de>
Regards,
Marco
> ---
> arch/arm64/boot/dts/freescale/imx8ulp.dtsi | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm64/boot/dts/freescale/imx8ulp.dtsi b/arch/arm64/boot/dts/freescale/imx8ulp.dtsi
> index f22c1ac391c9..c4a0082f30d3 100644
> --- a/arch/arm64/boot/dts/freescale/imx8ulp.dtsi
> +++ b/arch/arm64/boot/dts/freescale/imx8ulp.dtsi
> @@ -483,7 +483,7 @@ fec: ethernet@29950000 {
> };
> };
>
> - gpioe: gpio@2d000080 {
> + gpioe: gpio@2d000000 {
> compatible = "fsl,imx8ulp-gpio";
> reg = <0x2d000000 0x1000>;
> gpio-controller;
> @@ -498,7 +498,7 @@ gpioe: gpio@2d000080 {
> gpio-ranges = <&iomuxc1 0 32 24>;
> };
>
> - gpiof: gpio@2d010080 {
> + gpiof: gpio@2d010000 {
> compatible = "fsl,imx8ulp-gpio";
> reg = <0x2d010000 0x1000>;
> gpio-controller;
> @@ -534,7 +534,7 @@ pcc5: clock-controller@2da70000 {
> };
> };
>
> - gpiod: gpio@2e200080 {
> + gpiod: gpio@2e200000 {
> compatible = "fsl,imx8ulp-gpio";
> reg = <0x2e200000 0x1000>;
> gpio-controller;
> --
> 2.34.1
>
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] arm64: dts: imx93: update gpio node name to align with register address
2023-11-15 3:56 [PATCH 1/2] arm64: dts: imx93: update gpio node name to align with register address haibo.chen
2023-11-15 3:56 ` [PATCH 2/2] arm64: dts: imx8ulp: " haibo.chen
@ 2023-12-06 1:14 ` Shawn Guo
1 sibling, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2023-12-06 1:14 UTC (permalink / raw)
To: haibo.chen
Cc: robh+dt, krzysztof.kozlowski+dt, conor+dt, s.hauer, kernel,
festevam, linux-imx, peng.fan, devicetree
On Wed, Nov 15, 2023 at 11:56:20AM +0800, haibo.chen@nxp.com wrote:
> From: Haibo Chen <haibo.chen@nxp.com>
>
> Change the gpio node name to align with register address
>
> Fixes: c1d0782b5fc3 ("arm64: dts: imx93: update gpio node")
> Signed-off-by: Haibo Chen <haibo.chen@nxp.com>
Applied both, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-12-06 1:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-15 3:56 [PATCH 1/2] arm64: dts: imx93: update gpio node name to align with register address haibo.chen
2023-11-15 3:56 ` [PATCH 2/2] arm64: dts: imx8ulp: " haibo.chen
2023-11-15 12:33 ` Marco Felsch
2023-12-06 1:14 ` [PATCH 1/2] arm64: dts: imx93: " Shawn Guo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox