All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/3] ARM: dts: imx28-evk: Fix display duplicate name warning
@ 2014-09-03  1:45 Fabio Estevam
  2014-09-03  1:45 ` [PATCH 2/3] ARM: dts: imx23-evk: " Fabio Estevam
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabio Estevam @ 2014-09-03  1:45 UTC (permalink / raw)
  To: linux-arm-kernel

From: Fabio Estevam <fabio.estevam@freescale.com>

The lcdif node has a property named "display" and also a child node
called "display", which causes the following warning:

device-tree: Duplicate name in lcdif at 80030000, renamed to "display#1"

Rename the child node name in order to avoid the warning.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v1:
- Rename the child node

 arch/arm/boot/dts/imx28-evk.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/imx28-evk.dts b/arch/arm/boot/dts/imx28-evk.dts
index e4cc44c..09664fc 100644
--- a/arch/arm/boot/dts/imx28-evk.dts
+++ b/arch/arm/boot/dts/imx28-evk.dts
@@ -124,10 +124,10 @@
 				pinctrl-0 = <&lcdif_24bit_pins_a
 					     &lcdif_pins_evk>;
 				lcd-supply = <&reg_lcd_3v3>;
-				display = <&display>;
+				display = <&display0>;
 				status = "okay";
 
-				display: display {
+				display0: display0 {
 					bits-per-pixel = <32>;
 					bus-width = <24>;
 
-- 
1.9.1

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

* [PATCH 2/3] ARM: dts: imx23-evk: Fix display duplicate name warning
  2014-09-03  1:45 [PATCH v2 1/3] ARM: dts: imx28-evk: Fix display duplicate name warning Fabio Estevam
@ 2014-09-03  1:45 ` Fabio Estevam
  2014-09-03  1:45 ` [PATCH 3/3] ARM: dts: imx6sl-evk: " Fabio Estevam
  2014-09-04  3:37 ` [PATCH v2 1/3] ARM: dts: imx28-evk: " Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2014-09-03  1:45 UTC (permalink / raw)
  To: linux-arm-kernel

From: Fabio Estevam <fabio.estevam@freescale.com>

The lcdif node has a property named "display" and also a child node
called "display", which causes the following warning:

device-tree: Duplicate name in lcdif at 80030000, renamed to "display#1"

Rename the child node name in order to avoid the warning.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v1:
- None. Newly introduced in this version

 arch/arm/boot/dts/imx23-evk.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/imx23-evk.dts b/arch/arm/boot/dts/imx23-evk.dts
index a33f66c..57e2997 100644
--- a/arch/arm/boot/dts/imx23-evk.dts
+++ b/arch/arm/boot/dts/imx23-evk.dts
@@ -60,10 +60,10 @@
 				pinctrl-names = "default";
 				pinctrl-0 = <&lcdif_24bit_pins_a>;
 				lcd-supply = <&reg_lcd_3v3>;
-				display = <&display>;
+				display = <&display0>;
 				status = "okay";
 
-				display: display {
+				display0: display0 {
 					bits-per-pixel = <32>;
 					bus-width = <24>;
 
-- 
1.9.1

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

* [PATCH 3/3] ARM: dts: imx6sl-evk: Fix display duplicate name warning
  2014-09-03  1:45 [PATCH v2 1/3] ARM: dts: imx28-evk: Fix display duplicate name warning Fabio Estevam
  2014-09-03  1:45 ` [PATCH 2/3] ARM: dts: imx23-evk: " Fabio Estevam
@ 2014-09-03  1:45 ` Fabio Estevam
  2014-09-04  3:37 ` [PATCH v2 1/3] ARM: dts: imx28-evk: " Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2014-09-03  1:45 UTC (permalink / raw)
  To: linux-arm-kernel

From: Fabio Estevam <fabio.estevam@freescale.com>

The lcdif node has a property named "display" and also a child node
called "display", which causes the following warning:

device-tree: Duplicate name in lcdif at 02220000, renamed to "display#1"

Rename the child node name in order to avoid the warning.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v1:
- None. Newly introduced in this version

 arch/arm/boot/dts/imx6sl-evk.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/imx6sl-evk.dts b/arch/arm/boot/dts/imx6sl-evk.dts
index 9925c4a..898d14f 100644
--- a/arch/arm/boot/dts/imx6sl-evk.dts
+++ b/arch/arm/boot/dts/imx6sl-evk.dts
@@ -546,10 +546,10 @@
 	pinctrl-names = "default";
 	pinctrl-0 = <&pinctrl_lcd>;
 	lcd-supply = <&reg_lcd_3v3>;
-	display = <&display>;
+	display = <&display0>;
 	status = "okay";
 
-	display: display {
+	display0: display0 {
 		bits-per-pixel = <32>;
 		bus-width = <24>;
 
-- 
1.9.1

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

* [PATCH v2 1/3] ARM: dts: imx28-evk: Fix display duplicate name warning
  2014-09-03  1:45 [PATCH v2 1/3] ARM: dts: imx28-evk: Fix display duplicate name warning Fabio Estevam
  2014-09-03  1:45 ` [PATCH 2/3] ARM: dts: imx23-evk: " Fabio Estevam
  2014-09-03  1:45 ` [PATCH 3/3] ARM: dts: imx6sl-evk: " Fabio Estevam
@ 2014-09-04  3:37 ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2014-09-04  3:37 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Sep 02, 2014 at 10:45:12PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> The lcdif node has a property named "display" and also a child node
> called "display", which causes the following warning:
> 
> device-tree: Duplicate name in lcdif at 80030000, renamed to "display#1"
> 
> Rename the child node name in order to avoid the warning.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Applied all, thanks.

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

end of thread, other threads:[~2014-09-04  3:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-03  1:45 [PATCH v2 1/3] ARM: dts: imx28-evk: Fix display duplicate name warning Fabio Estevam
2014-09-03  1:45 ` [PATCH 2/3] ARM: dts: imx23-evk: " Fabio Estevam
2014-09-03  1:45 ` [PATCH 3/3] ARM: dts: imx6sl-evk: " Fabio Estevam
2014-09-04  3:37 ` [PATCH v2 1/3] ARM: dts: imx28-evk: " 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.