SUPERH platform development
 help / color / mirror / Atom feed
* [PATCH 0/3] Renesas serial sh-sci DT fixes
@ 2014-01-21 12:48 Laurent Pinchart
  2014-01-21 12:48 ` [PATCH 1/3] serial: sh-sci: Fix compatible string in DT bindings example Laurent Pinchart
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Laurent Pinchart @ 2014-01-21 12:48 UTC (permalink / raw)
  To: linux-sh

Hello,

These three patches fix issues with the sh-sci DT support.

The first patch fixes a typo in the DT bindings documentation example. The two
other patches fix issues in the r8a7790 serial port DT nodes caused by merging
work in progress version of DT support instead of the latest available one.

The first two patches are candidates for v3.14-rc. I'd like to third patch to
join them if possible.

Simon, could you please pick them up ? The first patch touches DT bindings
documentation so I've CC'ed the devicetree mailing list, but the fix is so
trivial that I don't think the DT bindings maintainers' Ack is required.

Laurent Pinchart (3):
  serial: sh-sci: Fix compatible string in DT bindings example
  ARM: shmobile: r8a7790: Fix serial ports DT compatible strings
  ARM: shmobile: r8a7790: Replace IRQ type numerical values with macros

 .../bindings/serial/renesas,sci-serial.txt         |  2 +-
 arch/arm/boot/dts/r8a7790.dtsi                     | 40 +++++++++++-----------
 2 files changed, 21 insertions(+), 21 deletions(-)

-- 
Regards,

Laurent Pinchart


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

* [PATCH 1/3] serial: sh-sci: Fix compatible string in DT bindings example
  2014-01-21 12:48 [PATCH 0/3] Renesas serial sh-sci DT fixes Laurent Pinchart
@ 2014-01-21 12:48 ` Laurent Pinchart
  2014-01-22  0:34 ` [PATCH 0/3] Renesas serial sh-sci DT fixes Simon Horman
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Laurent Pinchart @ 2014-01-21 12:48 UTC (permalink / raw)
  To: linux-sh; +Cc: devicetree

Remove the -generic suffix from the compatible string in the serial port
DT bindings example.

Cc: devicetree@vger.kernel.org
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
---
 Documentation/devicetree/bindings/serial/renesas,sci-serial.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/serial/renesas,sci-serial.txt b/Documentation/devicetree/bindings/serial/renesas,sci-serial.txt
index f372cf2..53e6c17 100644
--- a/Documentation/devicetree/bindings/serial/renesas,sci-serial.txt
+++ b/Documentation/devicetree/bindings/serial/renesas,sci-serial.txt
@@ -37,7 +37,7 @@ Example:
 	};
 
 	scifa0: serial@e6c40000 {
-		compatible = "renesas,scifa-r8a7790", "renesas,scifa-generic";
+		compatible = "renesas,scifa-r8a7790", "renesas,scifa";
 		reg = <0 0xe6c40000 0 64>;
 		interrupt-parent = <&gic>;
 		interrupts = <0 144 IRQ_TYPE_LEVEL_HIGH>;
-- 
1.8.3.2


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

* Re: [PATCH 0/3] Renesas serial sh-sci DT fixes
  2014-01-21 12:48 [PATCH 0/3] Renesas serial sh-sci DT fixes Laurent Pinchart
  2014-01-21 12:48 ` [PATCH 1/3] serial: sh-sci: Fix compatible string in DT bindings example Laurent Pinchart
@ 2014-01-22  0:34 ` Simon Horman
  2014-01-22  9:51 ` Laurent Pinchart
  2014-01-24  1:20 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2014-01-22  0:34 UTC (permalink / raw)
  To: linux-sh

On Tue, Jan 21, 2014 at 01:48:36PM +0100, Laurent Pinchart wrote:
> Hello,
> 
> These three patches fix issues with the sh-sci DT support.
> 
> The first patch fixes a typo in the DT bindings documentation example. The two
> other patches fix issues in the r8a7790 serial port DT nodes caused by merging
> work in progress version of DT support instead of the latest available one.
> 
> The first two patches are candidates for v3.14-rc. I'd like to third patch to
> join them if possible.

Forgive me for blase but these changes seem to be more on the
cosmetic side than on the fixing problems side. I'm more inclined to
queue them up for v3.15 than v3.14-rc.

> 
> Simon, could you please pick them up ? The first patch touches DT bindings
> documentation so I've CC'ed the devicetree mailing list, but the fix is so
> trivial that I don't think the DT bindings maintainers' Ack is required.

Agreed.

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

* Re: [PATCH 0/3] Renesas serial sh-sci DT fixes
  2014-01-21 12:48 [PATCH 0/3] Renesas serial sh-sci DT fixes Laurent Pinchart
  2014-01-21 12:48 ` [PATCH 1/3] serial: sh-sci: Fix compatible string in DT bindings example Laurent Pinchart
  2014-01-22  0:34 ` [PATCH 0/3] Renesas serial sh-sci DT fixes Simon Horman
@ 2014-01-22  9:51 ` Laurent Pinchart
  2014-01-24  1:20 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Laurent Pinchart @ 2014-01-22  9:51 UTC (permalink / raw)
  To: linux-sh

Hi Simon,

On Wednesday 22 January 2014 09:34:56 Simon Horman wrote:
> On Tue, Jan 21, 2014 at 01:48:36PM +0100, Laurent Pinchart wrote:
> > Hello,
> > 
> > These three patches fix issues with the sh-sci DT support.
> > 
> > The first patch fixes a typo in the DT bindings documentation example. The
> > two other patches fix issues in the r8a7790 serial port DT nodes caused
> > by merging work in progress version of DT support instead of the latest
> > available one.
> > 
> > The first two patches are candidates for v3.14-rc. I'd like to third patch
> > to join them if possible.
> 
> Forgive me for blase

I'll try to forgive you :-)

> but these changes seem to be more on the cosmetic side than on the fixing
> problems side. I'm more inclined to queue them up for v3.15 than v3.14-rc.

Given that the serial devices are disabled the problems shouldn't cause any 
issue, indeed. I was more concerned about someone enabling them and having 
incorrect DTs in the wild, but I suppose that's not likely.

> > Simon, could you please pick them up ? The first patch touches DT bindings
> > documentation so I've CC'ed the devicetree mailing list, but the fix is so
> > trivial that I don't think the DT bindings maintainers' Ack is required.
> 
> Agreed.

-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH 0/3] Renesas serial sh-sci DT fixes
  2014-01-21 12:48 [PATCH 0/3] Renesas serial sh-sci DT fixes Laurent Pinchart
                   ` (2 preceding siblings ...)
  2014-01-22  9:51 ` Laurent Pinchart
@ 2014-01-24  1:20 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2014-01-24  1:20 UTC (permalink / raw)
  To: linux-sh

On Wed, Jan 22, 2014 at 10:51:38AM +0100, Laurent Pinchart wrote:
> Hi Simon,
> 
> On Wednesday 22 January 2014 09:34:56 Simon Horman wrote:
> > On Tue, Jan 21, 2014 at 01:48:36PM +0100, Laurent Pinchart wrote:
> > > Hello,
> > > 
> > > These three patches fix issues with the sh-sci DT support.
> > > 
> > > The first patch fixes a typo in the DT bindings documentation example. The
> > > two other patches fix issues in the r8a7790 serial port DT nodes caused
> > > by merging work in progress version of DT support instead of the latest
> > > available one.
> > > 
> > > The first two patches are candidates for v3.14-rc. I'd like to third patch
> > > to join them if possible.
> > 
> > Forgive me for blase
> 
> I'll try to forgive you :-)
> 
> > but these changes seem to be more on the cosmetic side than on the fixing
> > problems side. I'm more inclined to queue them up for v3.15 than v3.14-rc.
> 
> Given that the serial devices are disabled the problems shouldn't cause any 
> issue, indeed. I was more concerned about someone enabling them and having 
> incorrect DTs in the wild, but I suppose that's not likely.

Agreed.

I have queued up this series for v3.15.

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

end of thread, other threads:[~2014-01-24  1:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-21 12:48 [PATCH 0/3] Renesas serial sh-sci DT fixes Laurent Pinchart
2014-01-21 12:48 ` [PATCH 1/3] serial: sh-sci: Fix compatible string in DT bindings example Laurent Pinchart
2014-01-22  0:34 ` [PATCH 0/3] Renesas serial sh-sci DT fixes Simon Horman
2014-01-22  9:51 ` Laurent Pinchart
2014-01-24  1:20 ` Simon Horman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox