* [PATCH 1/4] dt: bindings: Typo s/clocks-names/clock-names/g
@ 2014-04-22 18:40 Geert Uytterhoeven
2014-04-25 15:47 ` Dinh Nguyen
0 siblings, 1 reply; 3+ messages in thread
From: Geert Uytterhoeven @ 2014-04-22 18:40 UTC (permalink / raw)
To: Rob Herring, devicetree
Cc: linux-kernel, Geert Uytterhoeven, Dinh Nguyen, Arnd Bergmann,
netdev
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Dinh Nguyen <dinguyen@altera.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: netdev@vger.kernel.org
---
.../devicetree/bindings/net/socfpga-dwmac.txt | 2 +-
Documentation/devicetree/bindings/net/stmmac.txt | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/net/socfpga-dwmac.txt b/Documentation/devicetree/bindings/net/socfpga-dwmac.txt
index 636f0ac4e223..2a60cd3e8d5d 100644
--- a/Documentation/devicetree/bindings/net/socfpga-dwmac.txt
+++ b/Documentation/devicetree/bindings/net/socfpga-dwmac.txt
@@ -23,5 +23,5 @@ gmac0: ethernet@ff700000 {
interrupt-names = "macirq";
mac-address = [00 00 00 00 00 00];/* Filled in by U-Boot */
clocks = <&emac_0_clk>;
- clocks-names = "stmmaceth";
+ clock-names = "stmmaceth";
};
diff --git a/Documentation/devicetree/bindings/net/stmmac.txt b/Documentation/devicetree/bindings/net/stmmac.txt
index 80c1fb8bfbb8..a2acd2b26baf 100644
--- a/Documentation/devicetree/bindings/net/stmmac.txt
+++ b/Documentation/devicetree/bindings/net/stmmac.txt
@@ -33,7 +33,7 @@ Optional properties:
- max-frame-size: See ethernet.txt file in the same directory
- clocks: If present, the first clock should be the GMAC main clock,
further clocks may be specified in derived bindings.
-- clocks-names: One name for each entry in the clocks property, the
+- clock-names: One name for each entry in the clocks property, the
first one should be "stmmaceth".
Examples:
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/4] dt: bindings: Typo s/clocks-names/clock-names/g
2014-04-22 18:40 [PATCH 1/4] dt: bindings: Typo s/clocks-names/clock-names/g Geert Uytterhoeven
@ 2014-04-25 15:47 ` Dinh Nguyen
2014-04-28 11:42 ` Grant Likely
0 siblings, 1 reply; 3+ messages in thread
From: Dinh Nguyen @ 2014-04-25 15:47 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Rob Herring, devicetree, linux-kernel, Arnd Bergmann, netdev
On Tue, 2014-04-22 at 20:40 +0200, Geert Uytterhoeven wrote:
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Cc: Dinh Nguyen <dinguyen@altera.com>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: netdev@vger.kernel.org
> ---
> .../devicetree/bindings/net/socfpga-dwmac.txt | 2 +-
> Documentation/devicetree/bindings/net/stmmac.txt | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/net/socfpga-dwmac.txt b/Documentation/devicetree/bindings/net/socfpga-dwmac.txt
> index 636f0ac4e223..2a60cd3e8d5d 100644
> --- a/Documentation/devicetree/bindings/net/socfpga-dwmac.txt
> +++ b/Documentation/devicetree/bindings/net/socfpga-dwmac.txt
> @@ -23,5 +23,5 @@ gmac0: ethernet@ff700000 {
> interrupt-names = "macirq";
> mac-address = [00 00 00 00 00 00];/* Filled in by U-Boot */
> clocks = <&emac_0_clk>;
> - clocks-names = "stmmaceth";
> + clock-names = "stmmaceth";
> };
> diff --git a/Documentation/devicetree/bindings/net/stmmac.txt b/Documentation/devicetree/bindings/net/stmmac.txt
> index 80c1fb8bfbb8..a2acd2b26baf 100644
> --- a/Documentation/devicetree/bindings/net/stmmac.txt
> +++ b/Documentation/devicetree/bindings/net/stmmac.txt
> @@ -33,7 +33,7 @@ Optional properties:
> - max-frame-size: See ethernet.txt file in the same directory
> - clocks: If present, the first clock should be the GMAC main clock,
> further clocks may be specified in derived bindings.
> -- clocks-names: One name for each entry in the clocks property, the
> +- clock-names: One name for each entry in the clocks property, the
> first one should be "stmmaceth".
>
> Examples:
I've applied this patch to git.rocketboards.org/linux-socfpga-next.git
next-dt.
Thanks,
Dinh
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/4] dt: bindings: Typo s/clocks-names/clock-names/g
2014-04-25 15:47 ` Dinh Nguyen
@ 2014-04-28 11:42 ` Grant Likely
0 siblings, 0 replies; 3+ messages in thread
From: Grant Likely @ 2014-04-28 11:42 UTC (permalink / raw)
To: Dinh Nguyen, Geert Uytterhoeven
Cc: Rob Herring, devicetree, linux-kernel, Arnd Bergmann, netdev
On Fri, 25 Apr 2014 10:47:30 -0500, Dinh Nguyen <dinguyen@altera.com> wrote:
> On Tue, 2014-04-22 at 20:40 +0200, Geert Uytterhoeven wrote:
> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > Cc: Dinh Nguyen <dinguyen@altera.com>
> > Cc: Arnd Bergmann <arnd@arndb.de>
> > Cc: netdev@vger.kernel.org
> > ---
> > .../devicetree/bindings/net/socfpga-dwmac.txt | 2 +-
> > Documentation/devicetree/bindings/net/stmmac.txt | 2 +-
> > 2 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/net/socfpga-dwmac.txt b/Documentation/devicetree/bindings/net/socfpga-dwmac.txt
> > index 636f0ac4e223..2a60cd3e8d5d 100644
> > --- a/Documentation/devicetree/bindings/net/socfpga-dwmac.txt
> > +++ b/Documentation/devicetree/bindings/net/socfpga-dwmac.txt
> > @@ -23,5 +23,5 @@ gmac0: ethernet@ff700000 {
> > interrupt-names = "macirq";
> > mac-address = [00 00 00 00 00 00];/* Filled in by U-Boot */
> > clocks = <&emac_0_clk>;
> > - clocks-names = "stmmaceth";
> > + clock-names = "stmmaceth";
> > };
> > diff --git a/Documentation/devicetree/bindings/net/stmmac.txt b/Documentation/devicetree/bindings/net/stmmac.txt
> > index 80c1fb8bfbb8..a2acd2b26baf 100644
> > --- a/Documentation/devicetree/bindings/net/stmmac.txt
> > +++ b/Documentation/devicetree/bindings/net/stmmac.txt
> > @@ -33,7 +33,7 @@ Optional properties:
> > - max-frame-size: See ethernet.txt file in the same directory
> > - clocks: If present, the first clock should be the GMAC main clock,
> > further clocks may be specified in derived bindings.
> > -- clocks-names: One name for each entry in the clocks property, the
> > +- clock-names: One name for each entry in the clocks property, the
> > first one should be "stmmaceth".
> >
> > Examples:
>
> I've applied this patch to git.rocketboards.org/linux-socfpga-next.git
> next-dt.
I've already got it in my tree which is in linux-next and will be asking
Linus to pull shortly.
g.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-04-28 11:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-22 18:40 [PATCH 1/4] dt: bindings: Typo s/clocks-names/clock-names/g Geert Uytterhoeven
2014-04-25 15:47 ` Dinh Nguyen
2014-04-28 11:42 ` Grant Likely
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).