linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string
@ 2016-01-03 21:20 Simon Horman
  2016-01-03 21:20 ` [PATCH v2 1/3] ARM: shmobile: r8a7790: " Simon Horman
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Simon Horman @ 2016-01-03 21:20 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

this short series makes use of the recently added fallback usbhs
compatibility string in the r8a779[014] device trees.

Based on renesas-devel-20151228-v4.4-rc7.

Changes since v1:
* Use "renesas,rcar-gen2-usbhs" instead of "renesas,usbhs"

Simon Horman (3):
  ARM: shmobile: r8a7790: use fallback usbhs compatibility string
  ARM: shmobile: r8a7791: use fallback usbhs compatibility string
  ARM: shmobile: r8a7794: use fallback usbhs compatibility string

 arch/arm/boot/dts/r8a7790.dtsi | 2 +-
 arch/arm/boot/dts/r8a7791.dtsi | 2 +-
 arch/arm/boot/dts/r8a7794.dtsi | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.1.4


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

* [PATCH v2 1/3] ARM: shmobile: r8a7790: use fallback usbhs compatibility string
  2016-01-03 21:20 [PATCH v2 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string Simon Horman
@ 2016-01-03 21:20 ` Simon Horman
  2016-01-03 21:20 ` [PATCH v2 2/3] ARM: shmobile: r8a7791: " Simon Horman
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2016-01-03 21:20 UTC (permalink / raw)
  To: linux-arm-kernel

Use recently added fallback compatibility string in r8a7790 device tree.

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/boot/dts/r8a7790.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7790.dtsi b/arch/arm/boot/dts/r8a7790.dtsi
index 7dfd393bfc7e..4d9af0f46fab 100644
--- a/arch/arm/boot/dts/r8a7790.dtsi
+++ b/arch/arm/boot/dts/r8a7790.dtsi
@@ -746,7 +746,7 @@
 	};
 
 	hsusb: usb@e6590000 {
-		compatible = "renesas,usbhs-r8a7790";
+		compatible = "renesas,usbhs-r8a7790", "renesas,rcar-gen2-usbhs";
 		reg = <0 0xe6590000 0 0x100>;
 		interrupts = <0 107 IRQ_TYPE_LEVEL_HIGH>;
 		clocks = <&mstp7_clks R8A7790_CLK_HSUSB>;
-- 
2.1.4


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

* [PATCH v2 2/3] ARM: shmobile: r8a7791: use fallback usbhs compatibility string
  2016-01-03 21:20 [PATCH v2 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string Simon Horman
  2016-01-03 21:20 ` [PATCH v2 1/3] ARM: shmobile: r8a7790: " Simon Horman
@ 2016-01-03 21:20 ` Simon Horman
  2016-01-03 21:20 ` [PATCH v2 3/3] ARM: shmobile: r8a7794: " Simon Horman
  2016-01-04  8:39 ` [PATCH v2 0/3] ARM: shmobile: r8a779x: " Geert Uytterhoeven
  3 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2016-01-03 21:20 UTC (permalink / raw)
  To: linux-arm-kernel

Use recently added fallback compatibility string in r8a7791 device tree.

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/boot/dts/r8a7791.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7791.dtsi b/arch/arm/boot/dts/r8a7791.dtsi
index 2a369ddcb6fd..829224d2a3ed 100644
--- a/arch/arm/boot/dts/r8a7791.dtsi
+++ b/arch/arm/boot/dts/r8a7791.dtsi
@@ -822,7 +822,7 @@
 	};
 
 	hsusb: usb@e6590000 {
-		compatible = "renesas,usbhs-r8a7791";
+		compatible = "renesas,usbhs-r8a7791", "renesas,rcar-gen2-usbhs";
 		reg = <0 0xe6590000 0 0x100>;
 		interrupts = <0 107 IRQ_TYPE_LEVEL_HIGH>;
 		clocks = <&mstp7_clks R8A7791_CLK_HSUSB>;
-- 
2.1.4


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

* [PATCH v2 3/3] ARM: shmobile: r8a7794: use fallback usbhs compatibility string
  2016-01-03 21:20 [PATCH v2 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string Simon Horman
  2016-01-03 21:20 ` [PATCH v2 1/3] ARM: shmobile: r8a7790: " Simon Horman
  2016-01-03 21:20 ` [PATCH v2 2/3] ARM: shmobile: r8a7791: " Simon Horman
@ 2016-01-03 21:20 ` Simon Horman
  2016-01-04  8:39 ` [PATCH v2 0/3] ARM: shmobile: r8a779x: " Geert Uytterhoeven
  3 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2016-01-03 21:20 UTC (permalink / raw)
  To: linux-arm-kernel

Use recently added fallback compatibility string in r8a7794 device tree.

Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/boot/dts/r8a7794.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7794.dtsi b/arch/arm/boot/dts/r8a7794.dtsi
index 6c78f1fae90f..f8cd3a0beebf 100644
--- a/arch/arm/boot/dts/r8a7794.dtsi
+++ b/arch/arm/boot/dts/r8a7794.dtsi
@@ -724,7 +724,7 @@
 	};
 
 	hsusb: usb@e6590000 {
-		compatible = "renesas,usbhs-r8a7794";
+		compatible = "renesas,usbhs-r8a7794", "renesas,rcar-gen2-usbhs";
 		reg = <0 0xe6590000 0 0x100>;
 		interrupts = <0 107 IRQ_TYPE_LEVEL_HIGH>;
 		clocks = <&mstp7_clks R8A7794_CLK_HSUSB>;
-- 
2.1.4


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

* Re: [PATCH v2 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string
  2016-01-03 21:20 [PATCH v2 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string Simon Horman
                   ` (2 preceding siblings ...)
  2016-01-03 21:20 ` [PATCH v2 3/3] ARM: shmobile: r8a7794: " Simon Horman
@ 2016-01-04  8:39 ` Geert Uytterhoeven
  2016-01-04 20:39   ` Simon Horman
  3 siblings, 1 reply; 6+ messages in thread
From: Geert Uytterhoeven @ 2016-01-04  8:39 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Jan 3, 2016 at 10:20 PM, Simon Horman
<horms+renesas@verge.net.au> wrote:
> this short series makes use of the recently added fallback usbhs
> compatibility string in the r8a779[014] device trees.
>
> Based on renesas-devel-20151228-v4.4-rc7.
>
> Changes since v1:
> * Use "renesas,rcar-gen2-usbhs" instead of "renesas,usbhs"
>
> Simon Horman (3):
>   ARM: shmobile: r8a7790: use fallback usbhs compatibility string
>   ARM: shmobile: r8a7791: use fallback usbhs compatibility string
>   ARM: shmobile: r8a7794: use fallback usbhs compatibility string

Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>

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] 6+ messages in thread

* Re: [PATCH v2 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string
  2016-01-04  8:39 ` [PATCH v2 0/3] ARM: shmobile: r8a779x: " Geert Uytterhoeven
@ 2016-01-04 20:39   ` Simon Horman
  0 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2016-01-04 20:39 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jan 04, 2016 at 09:39:17AM +0100, Geert Uytterhoeven wrote:
> On Sun, Jan 3, 2016 at 10:20 PM, Simon Horman
> <horms+renesas@verge.net.au> wrote:
> > this short series makes use of the recently added fallback usbhs
> > compatibility string in the r8a779[014] device trees.
> >
> > Based on renesas-devel-20151228-v4.4-rc7.
> >
> > Changes since v1:
> > * Use "renesas,rcar-gen2-usbhs" instead of "renesas,usbhs"
> >
> > Simon Horman (3):
> >   ARM: shmobile: r8a7790: use fallback usbhs compatibility string
> >   ARM: shmobile: r8a7791: use fallback usbhs compatibility string
> >   ARM: shmobile: r8a7794: use fallback usbhs compatibility string
> 
> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>

Thanks, I have queued these up for v4.6.

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

end of thread, other threads:[~2016-01-04 20:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-03 21:20 [PATCH v2 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string Simon Horman
2016-01-03 21:20 ` [PATCH v2 1/3] ARM: shmobile: r8a7790: " Simon Horman
2016-01-03 21:20 ` [PATCH v2 2/3] ARM: shmobile: r8a7791: " Simon Horman
2016-01-03 21:20 ` [PATCH v2 3/3] ARM: shmobile: r8a7794: " Simon Horman
2016-01-04  8:39 ` [PATCH v2 0/3] ARM: shmobile: r8a779x: " Geert Uytterhoeven
2016-01-04 20:39   ` 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).