All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: dts: imx50: Remove unused iomuxc-gpr node
@ 2020-05-01 20:37 Fabio Estevam
  2020-05-04  6:44 ` Abel Vesa
  2020-05-20  0:59 ` Shawn Guo
  0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2020-05-01 20:37 UTC (permalink / raw)
  To: shawnguo; +Cc: robh+dt, Fabio Estevam, linux-imx, linux-arm-kernel

The iomuxc-gpr node is not used and causes the following dtc
warning with W=1:

arch/arm/boot/dts/imx50.dtsi:286.28-289.6: Warning (unique_unit_address): /soc/bus@50000000/iomuxc@53fa8000: duplicate unit-address (also used in node /soc/bus@50000000/iomuxc-gpr@53fa8000)

Remove the node to fix the warning.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 arch/arm/boot/dts/imx50.dtsi | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/arch/arm/boot/dts/imx50.dtsi b/arch/arm/boot/dts/imx50.dtsi
index d325658901c5..339294df0399 100644
--- a/arch/arm/boot/dts/imx50.dtsi
+++ b/arch/arm/boot/dts/imx50.dtsi
@@ -288,11 +288,6 @@
 				reg = <0x53fa8000 0x4000>;
 			};
 
-			gpr: iomuxc-gpr@53fa8000 {
-				compatible = "fsl,imx50-iomuxc-gpr", "syscon";
-				reg = <0x53fa8000 0xc>;
-			};
-
 			pwm1: pwm@53fb4000 {
 				#pwm-cells = <2>;
 				compatible = "fsl,imx50-pwm", "fsl,imx27-pwm";
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: dts: imx50: Remove unused iomuxc-gpr node
  2020-05-01 20:37 [PATCH] ARM: dts: imx50: Remove unused iomuxc-gpr node Fabio Estevam
@ 2020-05-04  6:44 ` Abel Vesa
  2020-05-20  0:59 ` Shawn Guo
  1 sibling, 0 replies; 3+ messages in thread
From: Abel Vesa @ 2020-05-04  6:44 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: robh+dt, shawnguo, linux-imx, linux-arm-kernel

On 20-05-01 17:37:47, Fabio Estevam wrote:
> The iomuxc-gpr node is not used and causes the following dtc
> warning with W=1:
> 
> arch/arm/boot/dts/imx50.dtsi:286.28-289.6: Warning (unique_unit_address): /soc/bus@50000000/iomuxc@53fa8000: duplicate unit-address (also used in node /soc/bus@50000000/iomuxc-gpr@53fa8000)
> 
> Remove the node to fix the warning.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Reviewed-by: Abel Vesa <abel.vesa@nxp.com>

> ---
>  arch/arm/boot/dts/imx50.dtsi | 5 -----
>  1 file changed, 5 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/imx50.dtsi b/arch/arm/boot/dts/imx50.dtsi
> index d325658901c5..339294df0399 100644
> --- a/arch/arm/boot/dts/imx50.dtsi
> +++ b/arch/arm/boot/dts/imx50.dtsi
> @@ -288,11 +288,6 @@
>  				reg = <0x53fa8000 0x4000>;
>  			};
>  
> -			gpr: iomuxc-gpr@53fa8000 {
> -				compatible = "fsl,imx50-iomuxc-gpr", "syscon";
> -				reg = <0x53fa8000 0xc>;
> -			};
> -
>  			pwm1: pwm@53fb4000 {
>  				#pwm-cells = <2>;
>  				compatible = "fsl,imx50-pwm", "fsl,imx27-pwm";
> -- 
> 2.17.1
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: dts: imx50: Remove unused iomuxc-gpr node
  2020-05-01 20:37 [PATCH] ARM: dts: imx50: Remove unused iomuxc-gpr node Fabio Estevam
  2020-05-04  6:44 ` Abel Vesa
@ 2020-05-20  0:59 ` Shawn Guo
  1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2020-05-20  0:59 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: robh+dt, linux-imx, linux-arm-kernel

On Fri, May 01, 2020 at 05:37:47PM -0300, Fabio Estevam wrote:
> The iomuxc-gpr node is not used and causes the following dtc
> warning with W=1:
> 
> arch/arm/boot/dts/imx50.dtsi:286.28-289.6: Warning (unique_unit_address): /soc/bus@50000000/iomuxc@53fa8000: duplicate unit-address (also used in node /soc/bus@50000000/iomuxc-gpr@53fa8000)
> 
> Remove the node to fix the warning.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>

Applied, thanks.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-05-20  0:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-01 20:37 [PATCH] ARM: dts: imx50: Remove unused iomuxc-gpr node Fabio Estevam
2020-05-04  6:44 ` Abel Vesa
2020-05-20  0:59 ` Shawn Guo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.