devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names
@ 2016-06-10 13:00 Geert Uytterhoeven
  2016-06-10 13:00 ` [PATCH 01/19] ARM: dts: ape6evm: Name serial port pfc subnode after device name Geert Uytterhoeven
                   ` (11 more replies)
  0 siblings, 12 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

	Hi Simon, Magnus,

Currently board DTS files use various naming conventions for the Pin
Function Controller subnodes.  This may cause conflicts when enabling
support for more instances later, either directly in board DT files, or
in DT overlays.  These conflicts are most likely to happen for devices
that use/require aliases (e.g. "serial1"), or when using generic and
indexless names (e.g. "mmc").  Hence this series changes the names of
(most of) the submodes, to match the corresponding device names, which
are unique on a specific SoC.

I did not change the following node names:
  - "sdX", as they always matched the corresponding "sdhiX" name,
  - "touchscreen", as there's not much opportunity for conflicts,
  - "mmc", for "mmcif_pins" on sh73a0/kzm9g (which has a single mmc
    instance),
  - "sounda" for fsia_pins on SH-Mobile,
If you think these should be changed too, please let me know.

This series is against renesas-devel-20160606-v4.7-rc2.

Thanks!

Geert Uytterhoeven (19):
  ARM: dts: ape6evm: Name serial port pfc subnode after device name
  ARM: dts: ape6evm: Name mmc pfc subnode after device name
  ARM: dts: armadillo800eva: Name serial port pfc subnode after device
    name
  ARM: dts: bockw: Name serial port pfc subnode after device name
  ARM: dts: marzen: Name serial port pfc subnodes after device names
  ARM: dts: lager: Name serial port pfc subnodes after device names
  ARM: dts: lager: Name spi pfc subnodes after device names
  ARM: dts: lager: Name vin pfc subnode after device name
  ARM: dts: koelsch: Name serial port pfc subnodes after device names
  ARM: dts: koelsch: Name spi pfc subnodes after device names
  ARM: dts: porter: Name serial port pfc subnode after device name
  ARM: dts: porter: Name spi pfc subnode after device name
  ARM: dts: gose: Name serial port pfc subnodes after device names
  ARM: dts: gose: Name spi pfc subnode after device name
  ARM: dts: alt: Name serial port pfc subnode after device name
  ARM: dts: alt: Name spi pfc subnode after device name
  ARM: dts: silk: Name serial port pfc subnode after device name
  ARM: dts: silk: Name spi pfc subnode after device name
  ARM: dts: kzm9g: Name serial port pfc subnode after device name

 arch/arm/boot/dts/r8a73a4-ape6evm.dts         |  4 ++--
 arch/arm/boot/dts/r8a7740-armadillo800eva.dts |  2 +-
 arch/arm/boot/dts/r8a7778-bockw.dts           |  2 +-
 arch/arm/boot/dts/r8a7779-marzen.dts          |  4 ++--
 arch/arm/boot/dts/r8a7790-lager.dts           | 10 +++++-----
 arch/arm/boot/dts/r8a7791-koelsch.dts         |  8 ++++----
 arch/arm/boot/dts/r8a7791-porter.dts          |  4 ++--
 arch/arm/boot/dts/r8a7793-gose.dts            |  6 +++---
 arch/arm/boot/dts/r8a7794-alt.dts             |  4 ++--
 arch/arm/boot/dts/r8a7794-silk.dts            |  4 ++--
 arch/arm/boot/dts/sh73a0-kzm9g.dts            |  2 +-
 11 files changed, 25 insertions(+), 25 deletions(-)

-- 
1.9.1

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

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

* [PATCH 01/19] ARM: dts: ape6evm: Name serial port pfc subnode after device name
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
@ 2016-06-10 13:00 ` Geert Uytterhoeven
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

Name the Pin Function Controller subnode for SCIFA0 after its device
name, instead of after the serial port alias.

This avoids conflicts when enabling support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a73a4-ape6evm.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a73a4-ape6evm.dts b/arch/arm/boot/dts/r8a73a4-ape6evm.dts
index 740e5d23f7c70843..5bccc7d229d766c7 100644
--- a/arch/arm/boot/dts/r8a73a4-ape6evm.dts
+++ b/arch/arm/boot/dts/r8a73a4-ape6evm.dts
@@ -188,7 +188,7 @@
 };
 
 &pfc {
-	scifa0_pins: serial0 {
+	scifa0_pins: scifa0 {
 		groups = "scifa0_data";
 		function = "scifa0";
 	};
-- 
1.9.1

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

* [PATCH 02/19] ARM: dts: ape6evm: Name mmc pfc subnode after device name
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
@ 2016-06-10 13:00   ` Geert Uytterhoeven
  2016-06-10 13:00   ` [PATCH 03/19] ARM: dts: armadillo800eva: Name serial port " Geert Uytterhoeven
                     ` (7 subsequent siblings)
  8 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

Name the Pin Function Controller subnode for MMC0 after its device name,
instead of using the generic and indexless "mmc".

This avoids conflicts when enabling support for more MMC interfaces
later, either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
---
 arch/arm/boot/dts/r8a73a4-ape6evm.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a73a4-ape6evm.dts b/arch/arm/boot/dts/r8a73a4-ape6evm.dts
index 5bccc7d229d766c7..ec7c86e06538677a 100644
--- a/arch/arm/boot/dts/r8a73a4-ape6evm.dts
+++ b/arch/arm/boot/dts/r8a73a4-ape6evm.dts
@@ -193,7 +193,7 @@
 		function = "scifa0";
 	};
 
-	mmc0_pins: mmc {
+	mmc0_pins: mmc0 {
 		groups = "mmc0_data8", "mmc0_ctrl";
 		function = "mmc0";
 	};
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 03/19] ARM: dts: armadillo800eva: Name serial port pfc subnode after device name
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
  2016-06-10 13:00   ` [PATCH 02/19] ARM: dts: ape6evm: Name mmc " Geert Uytterhoeven
@ 2016-06-10 13:00   ` Geert Uytterhoeven
  2016-06-10 13:00   ` [PATCH 05/19] ARM: dts: marzen: Name serial port pfc subnodes after device names Geert Uytterhoeven
                     ` (6 subsequent siblings)
  8 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

Name the Pin Function Controller subnode for SCIFA1 after its device
name, instead of after the serial port alias.

This avoids conflicts when enabling support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
---
 arch/arm/boot/dts/r8a7740-armadillo800eva.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7740-armadillo800eva.dts b/arch/arm/boot/dts/r8a7740-armadillo800eva.dts
index 1620495166851971..6866f61a350c7cc3 100644
--- a/arch/arm/boot/dts/r8a7740-armadillo800eva.dts
+++ b/arch/arm/boot/dts/r8a7740-armadillo800eva.dts
@@ -232,7 +232,7 @@
 		function = "gether";
 	};
 
-	scifa1_pins: serial1 {
+	scifa1_pins: scifa1 {
 		groups = "scifa1_data";
 		function = "scifa1";
 	};
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 04/19] ARM: dts: bockw: Name serial port pfc subnode after device name
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
  2016-06-10 13:00 ` [PATCH 01/19] ARM: dts: ape6evm: Name serial port pfc subnode after device name Geert Uytterhoeven
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
@ 2016-06-10 13:00 ` Geert Uytterhoeven
  2016-06-10 13:00 ` [PATCH 08/19] ARM: dts: lager: Name vin " Geert Uytterhoeven
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

Name the Pin Function Controller subnode for SCIF0 after its device
name, instead of after the serial port alias.

This avoids conflicts when enabling support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7778-bockw.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7778-bockw.dts b/arch/arm/boot/dts/r8a7778-bockw.dts
index 0a0bd3b6bb401ce2..211d239d9041a886 100644
--- a/arch/arm/boot/dts/r8a7778-bockw.dts
+++ b/arch/arm/boot/dts/r8a7778-bockw.dts
@@ -129,7 +129,7 @@
 	pinctrl-0 = <&scif_clk_pins>;
 	pinctrl-names = "default";
 
-	scif0_pins: serial0 {
+	scif0_pins: scif0 {
 		groups = "scif0_data_a", "scif0_ctrl";
 		function = "scif0";
 	};
-- 
1.9.1

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

* [PATCH 05/19] ARM: dts: marzen: Name serial port pfc subnodes after device names
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
  2016-06-10 13:00   ` [PATCH 02/19] ARM: dts: ape6evm: Name mmc " Geert Uytterhoeven
  2016-06-10 13:00   ` [PATCH 03/19] ARM: dts: armadillo800eva: Name serial port " Geert Uytterhoeven
@ 2016-06-10 13:00   ` Geert Uytterhoeven
  2016-06-10 13:00   ` [PATCH 06/19] ARM: dts: lager: " Geert Uytterhoeven
                     ` (5 subsequent siblings)
  8 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

Name the Pin Function Controller subnodes for SCIF2 and SCIF4 after
their device names, instead of using some arbitrary names that look like
serial port aliases, but differ from the actual aliases.

This avoids conflicts when enabling support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
---
 arch/arm/boot/dts/r8a7779-marzen.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/r8a7779-marzen.dts b/arch/arm/boot/dts/r8a7779-marzen.dts
index cec79a6347c036f7..013e6f510b0faae4 100644
--- a/arch/arm/boot/dts/r8a7779-marzen.dts
+++ b/arch/arm/boot/dts/r8a7779-marzen.dts
@@ -195,12 +195,12 @@
 		};
 	};
 
-	scif2_pins: serial2 {
+	scif2_pins: scif2 {
 		groups = "scif2_data_c";
 		function = "scif2";
 	};
 
-	scif4_pins: serial4 {
+	scif4_pins: scif4 {
 		groups = "scif4_data";
 		function = "scif4";
 	};
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 06/19] ARM: dts: lager: Name serial port pfc subnodes after device names
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
                     ` (2 preceding siblings ...)
  2016-06-10 13:00   ` [PATCH 05/19] ARM: dts: marzen: Name serial port pfc subnodes after device names Geert Uytterhoeven
@ 2016-06-10 13:00   ` Geert Uytterhoeven
  2016-06-10 13:00   ` [PATCH 07/19] ARM: dts: lager: Name spi " Geert Uytterhoeven
                     ` (4 subsequent siblings)
  8 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

Name the Pin Function Controller subnodes for SCIF0 and SCIFA1 after
their device names, instead of after the serial port aliases.

This avoids conflicts when enabling support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
---
 arch/arm/boot/dts/r8a7790-lager.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/r8a7790-lager.dts b/arch/arm/boot/dts/r8a7790-lager.dts
index 15cef6232a391e02..9cb055a932edabc7 100644
--- a/arch/arm/boot/dts/r8a7790-lager.dts
+++ b/arch/arm/boot/dts/r8a7790-lager.dts
@@ -317,7 +317,7 @@
 		function = "du";
 	};
 
-	scif0_pins: serial0 {
+	scif0_pins: scif0 {
 		groups = "scif0_data";
 		function = "scif0";
 	};
@@ -337,7 +337,7 @@
 		function = "intc";
 	};
 
-	scifa1_pins: serial1 {
+	scifa1_pins: scifa1 {
 		groups = "scifa1_data";
 		function = "scifa1";
 	};
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 07/19] ARM: dts: lager: Name spi pfc subnodes after device names
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
                     ` (3 preceding siblings ...)
  2016-06-10 13:00   ` [PATCH 06/19] ARM: dts: lager: " Geert Uytterhoeven
@ 2016-06-10 13:00   ` Geert Uytterhoeven
  2016-06-10 13:00   ` [PATCH 10/19] ARM: dts: koelsch: " Geert Uytterhoeven
                     ` (3 subsequent siblings)
  8 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

Name the Pin Function Controller subnodes for QSPI and MSIOF1 after
their device names, instead of after the spi interface aliases.

This avoids conflicts when enabling support for more spi interfaces
later, either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
---
 arch/arm/boot/dts/r8a7790-lager.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/r8a7790-lager.dts b/arch/arm/boot/dts/r8a7790-lager.dts
index 9cb055a932edabc7..2d72c75ba4cb9c97 100644
--- a/arch/arm/boot/dts/r8a7790-lager.dts
+++ b/arch/arm/boot/dts/r8a7790-lager.dts
@@ -371,12 +371,12 @@
 		function = "mmc1";
 	};
 
-	qspi_pins: spi0 {
+	qspi_pins: qspi {
 		groups = "qspi_ctrl", "qspi_data4";
 		function = "qspi";
 	};
 
-	msiof1_pins: spi2 {
+	msiof1_pins: msiof1 {
 		groups = "msiof1_clk", "msiof1_sync", "msiof1_rx",
 				 "msiof1_tx";
 		function = "msiof1";
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 08/19] ARM: dts: lager: Name vin pfc subnode after device name
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2016-06-10 13:00 ` [PATCH 04/19] ARM: dts: bockw: " Geert Uytterhoeven
@ 2016-06-10 13:00 ` Geert Uytterhoeven
  2016-06-10 13:00 ` [PATCH 09/19] ARM: dts: koelsch: Name serial port pfc subnodes after device names Geert Uytterhoeven
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

Name the Pin Function Controller subnode for VIN1 after its device name,
instead of using the generic and indexless "vin".

This avoids conflicts when enabling support for more video inputs later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7790-lager.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7790-lager.dts b/arch/arm/boot/dts/r8a7790-lager.dts
index 2d72c75ba4cb9c97..5e43763cec6575d3 100644
--- a/arch/arm/boot/dts/r8a7790-lager.dts
+++ b/arch/arm/boot/dts/r8a7790-lager.dts
@@ -427,7 +427,7 @@
 		function = "usb2";
 	};
 
-	vin1_pins: vin {
+	vin1_pins: vin1 {
 		groups = "vin1_data8", "vin1_clk";
 		function = "vin1";
 	};
-- 
1.9.1

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

* [PATCH 09/19] ARM: dts: koelsch: Name serial port pfc subnodes after device names
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
                   ` (3 preceding siblings ...)
  2016-06-10 13:00 ` [PATCH 08/19] ARM: dts: lager: Name vin " Geert Uytterhoeven
@ 2016-06-10 13:00 ` Geert Uytterhoeven
  2016-06-10 13:00 ` [PATCH 11/19] ARM: dts: porter: Name serial port pfc subnode after device name Geert Uytterhoeven
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

Name the Pin Function Controller subnodes for SCIF0 and SCIF1 after
their device names, instead of after the serial port aliases.

This avoids conflicts when enabling support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7791-koelsch.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/r8a7791-koelsch.dts b/arch/arm/boot/dts/r8a7791-koelsch.dts
index 20fbc8c36a785bd3..73e5ecf036e1b968 100644
--- a/arch/arm/boot/dts/r8a7791-koelsch.dts
+++ b/arch/arm/boot/dts/r8a7791-koelsch.dts
@@ -332,12 +332,12 @@
 		function = "du";
 	};
 
-	scif0_pins: serial0 {
+	scif0_pins: scif0 {
 		groups = "scif0_data_d";
 		function = "scif0";
 	};
 
-	scif1_pins: serial1 {
+	scif1_pins: scif1 {
 		groups = "scif1_data_d";
 		function = "scif1";
 	};
-- 
1.9.1

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

* [PATCH 10/19] ARM: dts: koelsch: Name spi pfc subnodes after device names
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
                     ` (4 preceding siblings ...)
  2016-06-10 13:00   ` [PATCH 07/19] ARM: dts: lager: Name spi " Geert Uytterhoeven
@ 2016-06-10 13:00   ` Geert Uytterhoeven
  2016-06-10 13:01   ` [PATCH 14/19] ARM: dts: gose: Name spi pfc subnode after device name Geert Uytterhoeven
                     ` (2 subsequent siblings)
  8 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

Name the Pin Function Controller subnodes for QSPI and MSIOF0 after
their device names, instead of after the spi interface aliases.

This avoids conflicts when enabling support for more spi interfaces
later, either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
---
 arch/arm/boot/dts/r8a7791-koelsch.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/r8a7791-koelsch.dts b/arch/arm/boot/dts/r8a7791-koelsch.dts
index 73e5ecf036e1b968..f8a7d090fd017deb 100644
--- a/arch/arm/boot/dts/r8a7791-koelsch.dts
+++ b/arch/arm/boot/dts/r8a7791-koelsch.dts
@@ -372,12 +372,12 @@
 		function = "sdhi2";
 	};
 
-	qspi_pins: spi0 {
+	qspi_pins: qspi {
 		groups = "qspi_ctrl", "qspi_data4";
 		function = "qspi";
 	};
 
-	msiof0_pins: spi1 {
+	msiof0_pins: msiof0 {
 		groups = "msiof0_clk", "msiof0_sync", "msiof0_rx",
 				 "msiof0_tx";
 		function = "msiof0";
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 11/19] ARM: dts: porter: Name serial port pfc subnode after device name
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
                   ` (4 preceding siblings ...)
  2016-06-10 13:00 ` [PATCH 09/19] ARM: dts: koelsch: Name serial port pfc subnodes after device names Geert Uytterhoeven
@ 2016-06-10 13:00 ` Geert Uytterhoeven
  2016-06-10 13:00 ` [PATCH 12/19] ARM: dts: porter: Name spi " Geert Uytterhoeven
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

Name the Pin Function Controller subnode for SCIF0 after its device
name, instead of after the serial port alias.

This avoids conflicts when enabling support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7791-porter.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7791-porter.dts b/arch/arm/boot/dts/r8a7791-porter.dts
index e9151e946da8099b..85d109a5f43c4017 100644
--- a/arch/arm/boot/dts/r8a7791-porter.dts
+++ b/arch/arm/boot/dts/r8a7791-porter.dts
@@ -142,7 +142,7 @@
 };
 
 &pfc {
-	scif0_pins: serial0 {
+	scif0_pins: scif0 {
 		groups = "scif0_data_d";
 		function = "scif0";
 	};
-- 
1.9.1

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

* [PATCH 12/19] ARM: dts: porter: Name spi pfc subnode after device name
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
                   ` (5 preceding siblings ...)
  2016-06-10 13:00 ` [PATCH 11/19] ARM: dts: porter: Name serial port pfc subnode after device name Geert Uytterhoeven
@ 2016-06-10 13:00 ` Geert Uytterhoeven
  2016-06-10 13:00 ` [PATCH 13/19] ARM: dts: gose: Name serial port pfc subnodes after device names Geert Uytterhoeven
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

Name the Pin Function Controller subnode for QSPI after its device name,
instead of after the spi interface alias.

This avoids conflicts when enabling support for more spi interfaces
later, either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7791-porter.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7791-porter.dts b/arch/arm/boot/dts/r8a7791-porter.dts
index 85d109a5f43c4017..6761d11d3f9e1317 100644
--- a/arch/arm/boot/dts/r8a7791-porter.dts
+++ b/arch/arm/boot/dts/r8a7791-porter.dts
@@ -167,7 +167,7 @@
 		function = "sdhi2";
 	};
 
-	qspi_pins: spi0 {
+	qspi_pins: qspi {
 		groups = "qspi_ctrl", "qspi_data4";
 		function = "qspi";
 	};
-- 
1.9.1

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

* [PATCH 13/19] ARM: dts: gose: Name serial port pfc subnodes after device names
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
                   ` (6 preceding siblings ...)
  2016-06-10 13:00 ` [PATCH 12/19] ARM: dts: porter: Name spi " Geert Uytterhoeven
@ 2016-06-10 13:00 ` Geert Uytterhoeven
  2016-06-10 13:01 ` [PATCH 16/19] ARM: dts: alt: Name spi pfc subnode after device name Geert Uytterhoeven
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:00 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

Name the Pin Function Controller subnodes for SCIF0 and SCIF1 after
their device names, instead of after the serial port aliases.

This avoids conflicts when enabling support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7793-gose.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/r8a7793-gose.dts b/arch/arm/boot/dts/r8a7793-gose.dts
index f748360ee85712f1..995e1e0fb1ff4f57 100644
--- a/arch/arm/boot/dts/r8a7793-gose.dts
+++ b/arch/arm/boot/dts/r8a7793-gose.dts
@@ -320,12 +320,12 @@
 		function = "du";
 	};
 
-	scif0_pins: serial0 {
+	scif0_pins: scif0 {
 		groups = "scif0_data_d";
 		function = "scif0";
 	};
 
-	scif1_pins: serial1 {
+	scif1_pins: scif1 {
 		groups = "scif1_data_d";
 		function = "scif1";
 	};
-- 
1.9.1

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

* [PATCH 14/19] ARM: dts: gose: Name spi pfc subnode after device name
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
                     ` (5 preceding siblings ...)
  2016-06-10 13:00   ` [PATCH 10/19] ARM: dts: koelsch: " Geert Uytterhoeven
@ 2016-06-10 13:01   ` Geert Uytterhoeven
  2016-06-10 13:01   ` [PATCH 15/19] ARM: dts: alt: Name serial port " Geert Uytterhoeven
  2016-06-10 13:01   ` [PATCH 17/19] ARM: dts: silk: " Geert Uytterhoeven
  8 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:01 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

Name the Pin Function Controller subnode for QSPI after its device name,
instead of after the spi interface alias.

This avoids conflicts when enabl support for more spi interfaces later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
---
 arch/arm/boot/dts/r8a7793-gose.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7793-gose.dts b/arch/arm/boot/dts/r8a7793-gose.dts
index 995e1e0fb1ff4f57..90af18600124e119 100644
--- a/arch/arm/boot/dts/r8a7793-gose.dts
+++ b/arch/arm/boot/dts/r8a7793-gose.dts
@@ -360,7 +360,7 @@
 		renesas,function = "sdhi2";
 	};
 
-	qspi_pins: spi0 {
+	qspi_pins: qspi {
 		groups = "qspi_ctrl", "qspi_data4";
 		function = "qspi";
 	};
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 15/19] ARM: dts: alt: Name serial port pfc subnode after device name
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
                     ` (6 preceding siblings ...)
  2016-06-10 13:01   ` [PATCH 14/19] ARM: dts: gose: Name spi pfc subnode after device name Geert Uytterhoeven
@ 2016-06-10 13:01   ` Geert Uytterhoeven
  2016-06-10 13:01   ` [PATCH 17/19] ARM: dts: silk: " Geert Uytterhoeven
  8 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:01 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

Name the Pin Function Controller subnode for SCIF2 after its device
name, instead of using some arbitrary name that looks like a serial port
alias, but differs from the actual alias.

This avoids conflicts when enabling support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
---
 arch/arm/boot/dts/r8a7794-alt.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7794-alt.dts b/arch/arm/boot/dts/r8a7794-alt.dts
index 383ad791f1db3151..1335664b2f886a17 100644
--- a/arch/arm/boot/dts/r8a7794-alt.dts
+++ b/arch/arm/boot/dts/r8a7794-alt.dts
@@ -111,7 +111,7 @@
 		function = "du";
 	};
 
-	scif2_pins: serial2 {
+	scif2_pins: scif2 {
 		groups = "scif2_data";
 		function = "scif2";
 	};
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 16/19] ARM: dts: alt: Name spi pfc subnode after device name
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
                   ` (7 preceding siblings ...)
  2016-06-10 13:00 ` [PATCH 13/19] ARM: dts: gose: Name serial port pfc subnodes after device names Geert Uytterhoeven
@ 2016-06-10 13:01 ` Geert Uytterhoeven
  2016-06-10 13:01 ` [PATCH 18/19] ARM: dts: silk: " Geert Uytterhoeven
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:01 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

Name the Pin Function Controller subnode for QSPI after its device name,
instead of after the spi interface alias.

This avoids conflicts when enabl support for more spi interfaces later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7794-alt.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7794-alt.dts b/arch/arm/boot/dts/r8a7794-alt.dts
index 1335664b2f886a17..1ad37d431a2a3bfc 100644
--- a/arch/arm/boot/dts/r8a7794-alt.dts
+++ b/arch/arm/boot/dts/r8a7794-alt.dts
@@ -147,7 +147,7 @@
 };
 
 &pfc {
-	qspi_pins: spi0 {
+	qspi_pins: qspi {
 		groups = "qspi_ctrl", "qspi_data4";
 		function = "qspi";
 	};
-- 
1.9.1

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

* [PATCH 17/19] ARM: dts: silk: Name serial port pfc subnode after device name
       [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
                     ` (7 preceding siblings ...)
  2016-06-10 13:01   ` [PATCH 15/19] ARM: dts: alt: Name serial port " Geert Uytterhoeven
@ 2016-06-10 13:01   ` Geert Uytterhoeven
  8 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:01 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

Name the Pin Function Controller subnode for SCIF2 after its device
name, instead of using some arbitrary name that looks like a serial port
alias, but differs from the actual alias.

This avoids conflicts when enabling support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
---
 arch/arm/boot/dts/r8a7794-silk.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7794-silk.dts b/arch/arm/boot/dts/r8a7794-silk.dts
index b8c7a63c5ec456bc..7e88f6fe55cdcc02 100644
--- a/arch/arm/boot/dts/r8a7794-silk.dts
+++ b/arch/arm/boot/dts/r8a7794-silk.dts
@@ -129,7 +129,7 @@
 	pinctrl-0 = <&scif_clk_pins>;
 	pinctrl-names = "default";
 
-	scif2_pins: serial2 {
+	scif2_pins: scif2 {
 		groups = "scif2_data";
 		function = "scif2";
 	};
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 18/19] ARM: dts: silk: Name spi pfc subnode after device name
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
                   ` (8 preceding siblings ...)
  2016-06-10 13:01 ` [PATCH 16/19] ARM: dts: alt: Name spi pfc subnode after device name Geert Uytterhoeven
@ 2016-06-10 13:01 ` Geert Uytterhoeven
  2016-06-10 13:01 ` [PATCH 19/19] ARM: dts: kzm9g: Name serial port " Geert Uytterhoeven
  2016-06-14  0:13 ` [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Simon Horman
  11 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:01 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

Name the Pin Function Controller subnode for QSPI after its device name,
instead of after the spi interface alias.

This avoids conflicts when enabling support for more spi interfaces
later, either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7794-silk.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7794-silk.dts b/arch/arm/boot/dts/r8a7794-silk.dts
index 7e88f6fe55cdcc02..488de730bee89f42 100644
--- a/arch/arm/boot/dts/r8a7794-silk.dts
+++ b/arch/arm/boot/dts/r8a7794-silk.dts
@@ -164,7 +164,7 @@
 		function = "sdhi1";
 	};
 
-	qspi_pins: spi0 {
+	qspi_pins: qspi {
 		groups = "qspi_ctrl", "qspi_data4";
 		function = "qspi";
 	};
-- 
1.9.1

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

* [PATCH 19/19] ARM: dts: kzm9g: Name serial port pfc subnode after device name
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
                   ` (9 preceding siblings ...)
  2016-06-10 13:01 ` [PATCH 18/19] ARM: dts: silk: " Geert Uytterhoeven
@ 2016-06-10 13:01 ` Geert Uytterhoeven
  2016-06-14  0:13 ` [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Simon Horman
  11 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2016-06-10 13:01 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

Name the Pin Function Controller subnode for SCIFA4 after its device
name, instead of after the serial port alias.

This avoids conflicts when adding support for more serial ports later,
either here or in a DT overlay.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/sh73a0-kzm9g.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/sh73a0-kzm9g.dts b/arch/arm/boot/dts/sh73a0-kzm9g.dts
index 36567cbf2e1c32dd..1df68b1670339491 100644
--- a/arch/arm/boot/dts/sh73a0-kzm9g.dts
+++ b/arch/arm/boot/dts/sh73a0-kzm9g.dts
@@ -352,7 +352,7 @@
 		};
 	};
 
-	scifa4_pins: serial4 {
+	scifa4_pins: scifa4 {
 		groups = "scifa4_data", "scifa4_ctrl";
 		function = "scifa4";
 	};
-- 
1.9.1

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

* Re: [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names
  2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
                   ` (10 preceding siblings ...)
  2016-06-10 13:01 ` [PATCH 19/19] ARM: dts: kzm9g: Name serial port " Geert Uytterhoeven
@ 2016-06-14  0:13 ` Simon Horman
  11 siblings, 0 replies; 21+ messages in thread
From: Simon Horman @ 2016-06-14  0:13 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Magnus Damm, linux-renesas-soc, devicetree

On Fri, Jun 10, 2016 at 03:00:46PM +0200, Geert Uytterhoeven wrote:
> 	Hi Simon, Magnus,
> 
> Currently board DTS files use various naming conventions for the Pin
> Function Controller subnodes.  This may cause conflicts when enabling
> support for more instances later, either directly in board DT files, or
> in DT overlays.  These conflicts are most likely to happen for devices
> that use/require aliases (e.g. "serial1"), or when using generic and
> indexless names (e.g. "mmc").  Hence this series changes the names of
> (most of) the submodes, to match the corresponding device names, which
> are unique on a specific SoC.
> 
> I did not change the following node names:
>   - "sdX", as they always matched the corresponding "sdhiX" name,
>   - "touchscreen", as there's not much opportunity for conflicts,
>   - "mmc", for "mmcif_pins" on sh73a0/kzm9g (which has a single mmc
>     instance),
>   - "sounda" for fsia_pins on SH-Mobile,
> If you think these should be changed too, please let me know.

Thanks, I think this looks good, I have queued up this series.

I don't see any pressing need to rename the nodes you mention above
and we can always do so later if the need arises.

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

end of thread, other threads:[~2016-06-14  0:13 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-10 13:00 [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Geert Uytterhoeven
2016-06-10 13:00 ` [PATCH 01/19] ARM: dts: ape6evm: Name serial port pfc subnode after device name Geert Uytterhoeven
     [not found] ` <1465563665-2231-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2016-06-10 13:00   ` [PATCH 02/19] ARM: dts: ape6evm: Name mmc " Geert Uytterhoeven
2016-06-10 13:00   ` [PATCH 03/19] ARM: dts: armadillo800eva: Name serial port " Geert Uytterhoeven
2016-06-10 13:00   ` [PATCH 05/19] ARM: dts: marzen: Name serial port pfc subnodes after device names Geert Uytterhoeven
2016-06-10 13:00   ` [PATCH 06/19] ARM: dts: lager: " Geert Uytterhoeven
2016-06-10 13:00   ` [PATCH 07/19] ARM: dts: lager: Name spi " Geert Uytterhoeven
2016-06-10 13:00   ` [PATCH 10/19] ARM: dts: koelsch: " Geert Uytterhoeven
2016-06-10 13:01   ` [PATCH 14/19] ARM: dts: gose: Name spi pfc subnode after device name Geert Uytterhoeven
2016-06-10 13:01   ` [PATCH 15/19] ARM: dts: alt: Name serial port " Geert Uytterhoeven
2016-06-10 13:01   ` [PATCH 17/19] ARM: dts: silk: " Geert Uytterhoeven
2016-06-10 13:00 ` [PATCH 04/19] ARM: dts: bockw: " Geert Uytterhoeven
2016-06-10 13:00 ` [PATCH 08/19] ARM: dts: lager: Name vin " Geert Uytterhoeven
2016-06-10 13:00 ` [PATCH 09/19] ARM: dts: koelsch: Name serial port pfc subnodes after device names Geert Uytterhoeven
2016-06-10 13:00 ` [PATCH 11/19] ARM: dts: porter: Name serial port pfc subnode after device name Geert Uytterhoeven
2016-06-10 13:00 ` [PATCH 12/19] ARM: dts: porter: Name spi " Geert Uytterhoeven
2016-06-10 13:00 ` [PATCH 13/19] ARM: dts: gose: Name serial port pfc subnodes after device names Geert Uytterhoeven
2016-06-10 13:01 ` [PATCH 16/19] ARM: dts: alt: Name spi pfc subnode after device name Geert Uytterhoeven
2016-06-10 13:01 ` [PATCH 18/19] ARM: dts: silk: " Geert Uytterhoeven
2016-06-10 13:01 ` [PATCH 19/19] ARM: dts: kzm9g: Name serial port " Geert Uytterhoeven
2016-06-14  0:13 ` [PATCH 00/19] ARM: dts: renesas: Name pfc subnodes after device names Simon Horman

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).