* [PATCH RESEND] tty/serial: atmel_serial: Fix device tree documentation @ 2014-04-18 15:45 Richard Genoud 2014-04-22 13:45 ` Richard Genoud 0 siblings, 1 reply; 4+ messages in thread From: Richard Genoud @ 2014-04-18 15:45 UTC (permalink / raw) To: Rob Herring Cc: Nicolas Ferre, Linus Walleij, Ludovic Desroches, devicetree, linux-doc, linux-arm-kernel, Richard Genoud RTS pin is an active low pin. For now, this doesn't change anything as the ACTIVE_LOW (1) flag is not handled in atmel_serial, but it will be in 3.16. Signed-off-by: Richard Genoud <richard.genoud@gmail.com> --- Documentation/devicetree/bindings/serial/atmel-usart.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/serial/atmel-usart.txt b/Documentation/devicetree/bindings/serial/atmel-usart.txt index 17c1042b2df8..0dd0a5493a54 100644 --- a/Documentation/devicetree/bindings/serial/atmel-usart.txt +++ b/Documentation/devicetree/bindings/serial/atmel-usart.txt @@ -35,7 +35,7 @@ Example: clock-names = "usart"; atmel,use-dma-rx; atmel,use-dma-tx; - rts-gpios = <&pioD 15 0>; + rts-gpios = <&pioD 15 1>; }; - use DMA: -- 1.8.5.5 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH RESEND] tty/serial: atmel_serial: Fix device tree documentation 2014-04-18 15:45 [PATCH RESEND] tty/serial: atmel_serial: Fix device tree documentation Richard Genoud @ 2014-04-22 13:45 ` Richard Genoud [not found] ` <CACQ1gAhjrb+3Bka64QfbopvEeiU-ifm35eLYUrjwyR-3goW4QQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Richard Genoud @ 2014-04-22 13:45 UTC (permalink / raw) To: Rob Herring Cc: Nicolas Ferre, Linus Walleij, Ludovic Desroches, devicetree@vger.kernel.org, linux-doc, linux-arm-kernel@lists.infradead.org, Richard Genoud 2014-04-18 17:45 GMT+02:00 Richard Genoud <richard.genoud@gmail.com>: > RTS pin is an active low pin. > For now, this doesn't change anything as the ACTIVE_LOW (1) flag is not > handled in atmel_serial, but it will be in 3.16. > > Signed-off-by: Richard Genoud <richard.genoud@gmail.com> > --- > Documentation/devicetree/bindings/serial/atmel-usart.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/serial/atmel-usart.txt b/Documentation/devicetree/bindings/serial/atmel-usart.txt > index 17c1042b2df8..0dd0a5493a54 100644 > --- a/Documentation/devicetree/bindings/serial/atmel-usart.txt > +++ b/Documentation/devicetree/bindings/serial/atmel-usart.txt > @@ -35,7 +35,7 @@ Example: > clock-names = "usart"; > atmel,use-dma-rx; > atmel,use-dma-tx; > - rts-gpios = <&pioD 15 0>; > + rts-gpios = <&pioD 15 1>; > }; > > - use DMA: Rob, Does this has a chance to get to 3.15-rc3 or it's not worth it ? If it's not programmed for the 3.15-rc cycle, please drop it : I've got a patchset depending on it, and it will be in another tree. Richard. ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <CACQ1gAhjrb+3Bka64QfbopvEeiU-ifm35eLYUrjwyR-3goW4QQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH RESEND] tty/serial: atmel_serial: Fix device tree documentation [not found] ` <CACQ1gAhjrb+3Bka64QfbopvEeiU-ifm35eLYUrjwyR-3goW4QQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2014-04-22 14:37 ` Alexandre Belloni 2014-04-22 14:40 ` Richard Genoud 0 siblings, 1 reply; 4+ messages in thread From: Alexandre Belloni @ 2014-04-22 14:37 UTC (permalink / raw) To: Richard Genoud Cc: Rob Herring, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-doc-u79uwXL29TY76Z2rM5mHXA, Linus Walleij, Nicolas Ferre, Ludovic Desroches, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org Hi, On 22/04/2014 at 15:45:26 +0200, Richard Genoud wrote : > 2014-04-18 17:45 GMT+02:00 Richard Genoud <richard.genoud-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>: > > RTS pin is an active low pin. > > For now, this doesn't change anything as the ACTIVE_LOW (1) flag is not > > handled in atmel_serial, but it will be in 3.16. > > > > Signed-off-by: Richard Genoud <richard.genoud-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > --- > > Documentation/devicetree/bindings/serial/atmel-usart.txt | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/Documentation/devicetree/bindings/serial/atmel-usart.txt b/Documentation/devicetree/bindings/serial/atmel-usart.txt > > index 17c1042b2df8..0dd0a5493a54 100644 > > --- a/Documentation/devicetree/bindings/serial/atmel-usart.txt > > +++ b/Documentation/devicetree/bindings/serial/atmel-usart.txt > > @@ -35,7 +35,7 @@ Example: > > clock-names = "usart"; > > atmel,use-dma-rx; > > atmel,use-dma-tx; > > - rts-gpios = <&pioD 15 0>; > > + rts-gpios = <&pioD 15 1>; > > }; > > > > - use DMA: > > Rob, > Does this has a chance to get to 3.15-rc3 or it's not worth it ? > If it's not programmed for the 3.15-rc cycle, please drop it : I've > got a patchset depending on it, and it will be in another tree. > I would say that kind of change should go through Nicolas' tree or gregkh tty tree as it is directly related to the driver. -- Alexandre Belloni, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com -- 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 [flat|nested] 4+ messages in thread
* Re: [PATCH RESEND] tty/serial: atmel_serial: Fix device tree documentation 2014-04-22 14:37 ` Alexandre Belloni @ 2014-04-22 14:40 ` Richard Genoud 0 siblings, 0 replies; 4+ messages in thread From: Richard Genoud @ 2014-04-22 14:40 UTC (permalink / raw) To: Alexandre Belloni Cc: Rob Herring, devicetree@vger.kernel.org, linux-doc, Linus Walleij, Nicolas Ferre, Ludovic Desroches, linux-arm-kernel@lists.infradead.org 2014-04-22 16:37 GMT+02:00 Alexandre Belloni <alexandre.belloni@free-electrons.com>: > Hi, > > On 22/04/2014 at 15:45:26 +0200, Richard Genoud wrote : >> 2014-04-18 17:45 GMT+02:00 Richard Genoud <richard.genoud@gmail.com>: >> > RTS pin is an active low pin. >> > For now, this doesn't change anything as the ACTIVE_LOW (1) flag is not >> > handled in atmel_serial, but it will be in 3.16. >> > >> > Signed-off-by: Richard Genoud <richard.genoud@gmail.com> >> > --- >> > Documentation/devicetree/bindings/serial/atmel-usart.txt | 2 +- >> > 1 file changed, 1 insertion(+), 1 deletion(-) >> > >> > diff --git a/Documentation/devicetree/bindings/serial/atmel-usart.txt b/Documentation/devicetree/bindings/serial/atmel-usart.txt >> > index 17c1042b2df8..0dd0a5493a54 100644 >> > --- a/Documentation/devicetree/bindings/serial/atmel-usart.txt >> > +++ b/Documentation/devicetree/bindings/serial/atmel-usart.txt >> > @@ -35,7 +35,7 @@ Example: >> > clock-names = "usart"; >> > atmel,use-dma-rx; >> > atmel,use-dma-tx; >> > - rts-gpios = <&pioD 15 0>; >> > + rts-gpios = <&pioD 15 1>; >> > }; >> > >> > - use DMA: >> >> Rob, >> Does this has a chance to get to 3.15-rc3 or it's not worth it ? >> If it's not programmed for the 3.15-rc cycle, please drop it : I've >> got a patchset depending on it, and it will be in another tree. >> > > I would say that kind of change should go through Nicolas' tree or > gregkh tty tree as it is directly related to the driver. Ok, I'll send it to greg, since my patchset is on the tty tree. thanks ! ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-04-22 14:40 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-04-18 15:45 [PATCH RESEND] tty/serial: atmel_serial: Fix device tree documentation Richard Genoud 2014-04-22 13:45 ` Richard Genoud [not found] ` <CACQ1gAhjrb+3Bka64QfbopvEeiU-ifm35eLYUrjwyR-3goW4QQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2014-04-22 14:37 ` Alexandre Belloni 2014-04-22 14:40 ` Richard Genoud
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).