linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] ARM: dts: Use generic uart-has-rtscts DT property
@ 2016-05-31 14:31 Geert Uytterhoeven
  2016-05-31 14:31 ` [PATCH 1/3] ARM: dts: imx28: " Geert Uytterhoeven
  2016-06-11  6:48 ` [PATCH 0/3] ARM: dts: " Shawn Guo
  0 siblings, 2 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2016-05-31 14:31 UTC (permalink / raw)
  To: linux-arm-kernel

	Hi Shawn, Sascha, Barry,

As of v4.7-rc1, the Freescale MXS AUART and IMX UART drivers, and the
SiRF UART driver, recognize the generic "uart-has-rtscts" DT property,
deprecating the vendor-specific "<vendor>,uart-has-rtscts" DT
properties.  This series updates all DTS files to replace the latter by
the former.

Thanks for applying!

Geert Uytterhoeven (3):
  ARM: dts: imx28: Use generic uart-has-rtscts DT property
  ARM: dts: imx: Use generic uart-has-rtscts DT property
  ARM: dts: atlas7: Use generic uart-has-rtscts DT property

 arch/arm/boot/dts/atlas7-evb.dts                       | 2 +-
 arch/arm/boot/dts/imx1-ads.dts                         | 4 ++--
 arch/arm/boot/dts/imx1-apf9328.dts                     | 4 ++--
 arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard.dts | 4 ++--
 arch/arm/boot/dts/imx25-pdk.dts                        | 2 +-
 arch/arm/boot/dts/imx27-eukrea-cpuimx27.dtsi           | 2 +-
 arch/arm/boot/dts/imx27-eukrea-mbimxsd27-baseboard.dts | 6 +++---
 arch/arm/boot/dts/imx27-pdk.dts                        | 2 +-
 arch/arm/boot/dts/imx27-phytec-phycard-s-rdk.dts       | 6 +++---
 arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts         | 4 ++--
 arch/arm/boot/dts/imx28-apf28dev.dts                   | 2 +-
 arch/arm/boot/dts/imx28-evk.dts                        | 2 +-
 arch/arm/boot/dts/imx31-bug.dts                        | 2 +-
 arch/arm/boot/dts/imx35-eukrea-mbimxsd35-baseboard.dts | 4 ++--
 arch/arm/boot/dts/imx35-pdk.dts                        | 2 +-
 arch/arm/boot/dts/imx51-babbage.dts                    | 4 ++--
 arch/arm/boot/dts/imx51-eukrea-mbimxsd51-baseboard.dts | 4 ++--
 arch/arm/boot/dts/imx53-smd.dts                        | 2 +-
 arch/arm/boot/dts/imx53-tqma53.dtsi                    | 2 +-
 arch/arm/boot/dts/imx53-tx53.dtsi                      | 6 +++---
 arch/arm/boot/dts/imx6q-arm2.dts                       | 2 +-
 arch/arm/boot/dts/imx6q-ba16.dtsi                      | 2 +-
 arch/arm/boot/dts/imx6qdl-apalis.dtsi                  | 4 ++--
 arch/arm/boot/dts/imx6qdl-apf6dev.dtsi                 | 2 +-
 arch/arm/boot/dts/imx6qdl-aristainetos.dtsi            | 4 ++--
 arch/arm/boot/dts/imx6qdl-aristainetos2.dtsi           | 4 ++--
 arch/arm/boot/dts/imx6qdl-microsom.dtsi                | 2 +-
 arch/arm/boot/dts/imx6qdl-nit6xlite.dtsi               | 2 +-
 arch/arm/boot/dts/imx6qdl-tx6.dtsi                     | 6 +++---
 arch/arm/boot/dts/imx6qdl-wandboard.dtsi               | 2 +-
 arch/arm/boot/dts/imx6sl-warp.dts                      | 2 +-
 arch/arm/boot/dts/imx6sx-nitrogen6sx.dts               | 2 +-
 arch/arm/boot/dts/imx6sx-sdb.dtsi                      | 2 +-
 arch/arm/boot/dts/imx6ul-14x14-evk.dts                 | 2 +-
 arch/arm/boot/dts/imx6ul-pico-hobbit.dts               | 2 +-
 arch/arm/boot/dts/imx6ul-tx6ul-mainboard.dts           | 4 ++--
 arch/arm/boot/dts/imx6ul-tx6ul.dtsi                    | 6 +++---
 arch/arm/boot/dts/imx7d-nitrogen7.dts                  | 2 +-
 38 files changed, 59 insertions(+), 59 deletions(-)

-- 
1.9.1

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert at 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] 3+ messages in thread

* [PATCH 1/3] ARM: dts: imx28: Use generic uart-has-rtscts DT property
  2016-05-31 14:31 [PATCH 0/3] ARM: dts: Use generic uart-has-rtscts DT property Geert Uytterhoeven
@ 2016-05-31 14:31 ` Geert Uytterhoeven
  2016-06-11  6:48 ` [PATCH 0/3] ARM: dts: " Shawn Guo
  1 sibling, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2016-05-31 14:31 UTC (permalink / raw)
  To: linux-arm-kernel

As of commit 182cdcb8bb16e687 ("serial: mxs-auart: Use generic
uart-has-rtscts DT property"), the Freescale MXS AUART driver recognizes
the generic "uart-has-rtscts" DT property, deprecating the
vendor-specific "fsl,uart-has-rtscts" DT property. Hence replace the
latter by the former in all DTS files.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/imx28-apf28dev.dts | 2 +-
 arch/arm/boot/dts/imx28-evk.dts      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/imx28-apf28dev.dts b/arch/arm/boot/dts/imx28-apf28dev.dts
index 1eaa131e2d1809fb..c4fadbc1b40040f4 100644
--- a/arch/arm/boot/dts/imx28-apf28dev.dts
+++ b/arch/arm/boot/dts/imx28-apf28dev.dts
@@ -140,7 +140,7 @@
 			auart0: serial at 8006a000 {
 				pinctrl-names = "default";
 				pinctrl-0 = <&auart0_pins_a>;
-				fsl,uart-has-rtscts;
+				uart-has-rtscts;
 				status = "okay";
 			};
 
diff --git a/arch/arm/boot/dts/imx28-evk.dts b/arch/arm/boot/dts/imx28-evk.dts
index e3ef94ac159f75b2..a5ba669b4eaa4ce3 100644
--- a/arch/arm/boot/dts/imx28-evk.dts
+++ b/arch/arm/boot/dts/imx28-evk.dts
@@ -224,7 +224,7 @@
 			auart0: serial at 8006a000 {
 				pinctrl-names = "default";
 				pinctrl-0 = <&auart0_pins_a>;
-				fsl,uart-has-rtscts;
+				uart-has-rtscts;
 				status = "okay";
 			};
 
-- 
1.9.1

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

* [PATCH 0/3] ARM: dts: Use generic uart-has-rtscts DT property
  2016-05-31 14:31 [PATCH 0/3] ARM: dts: Use generic uart-has-rtscts DT property Geert Uytterhoeven
  2016-05-31 14:31 ` [PATCH 1/3] ARM: dts: imx28: " Geert Uytterhoeven
@ 2016-06-11  6:48 ` Shawn Guo
  1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2016-06-11  6:48 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, May 31, 2016 at 04:31:49PM +0200, Geert Uytterhoeven wrote:
> 	Hi Shawn, Sascha, Barry,
> 
> As of v4.7-rc1, the Freescale MXS AUART and IMX UART drivers, and the
> SiRF UART driver, recognize the generic "uart-has-rtscts" DT property,
> deprecating the vendor-specific "<vendor>,uart-has-rtscts" DT
> properties.  This series updates all DTS files to replace the latter by
> the former.
> 
> Thanks for applying!
> 
> Geert Uytterhoeven (3):
>   ARM: dts: imx28: Use generic uart-has-rtscts DT property
>   ARM: dts: imx: Use generic uart-has-rtscts DT property

Applied these two, thanks.

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

end of thread, other threads:[~2016-06-11  6:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-31 14:31 [PATCH 0/3] ARM: dts: Use generic uart-has-rtscts DT property Geert Uytterhoeven
2016-05-31 14:31 ` [PATCH 1/3] ARM: dts: imx28: " Geert Uytterhoeven
2016-06-11  6:48 ` [PATCH 0/3] ARM: dts: " Shawn Guo

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