netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax
@ 2022-05-24 14:11 Geert Uytterhoeven
  2022-05-24 14:30 ` Geert Uytterhoeven
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2022-05-24 14:11 UTC (permalink / raw)
  To: Michael Hennerich, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Rob Herring, Krzysztof Kozlowski,
	Alexandru Ardelean, Josua Mayer
  Cc: netdev, devicetree, linux-kernel, Geert Uytterhoeven

"make dt_binding_check":

    Documentation/devicetree/bindings/net/adi,adin.yaml:40:77: [error] syntax error: mapping values are not allowed here (syntax)

The first line of the description ends with a colon, hence the block
needs to be marked with a "|".

Fixes: 1f77204e11f8b9e5 ("dt-bindings: net: adin: document phy clock output properties")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 Documentation/devicetree/bindings/net/adi,adin.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/net/adi,adin.yaml b/Documentation/devicetree/bindings/net/adi,adin.yaml
index 77750df0c2c45e19..88611720545df2ce 100644
--- a/Documentation/devicetree/bindings/net/adi,adin.yaml
+++ b/Documentation/devicetree/bindings/net/adi,adin.yaml
@@ -37,7 +37,8 @@ properties:
     default: 8
 
   adi,phy-output-clock:
-    description: Select clock output on GP_CLK pin. Two clocks are available:
+    description: |
+      Select clock output on GP_CLK pin. Two clocks are available:
       A 25MHz reference and a free-running 125MHz.
       The phy can alternatively automatically switch between the reference and
       the 125MHz clocks based on its internal state.
-- 
2.25.1


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

* Re: [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax
  2022-05-24 14:11 [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax Geert Uytterhoeven
@ 2022-05-24 14:30 ` Geert Uytterhoeven
  2022-05-24 18:24   ` Jakub Kicinski
  2022-05-25  5:33 ` Josua Mayer
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Geert Uytterhoeven @ 2022-05-24 14:30 UTC (permalink / raw)
  To: Michael Hennerich
  Cc: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Rob Herring, Krzysztof Kozlowski, Josua Mayer, netdev,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux Kernel Mailing List, Geert Uytterhoeven

On Tue, May 24, 2022 at 4:12 PM Geert Uytterhoeven
<geert+renesas@glider.be> wrote:
> "make dt_binding_check":
>
>     Documentation/devicetree/bindings/net/adi,adin.yaml:40:77: [error] syntax error: mapping values are not allowed here (syntax)
>
> The first line of the description ends with a colon, hence the block
> needs to be marked with a "|".
>
> Fixes: 1f77204e11f8b9e5 ("dt-bindings: net: adin: document phy clock output properties")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
>  Documentation/devicetree/bindings/net/adi,adin.yaml | 3 ++-

Alexandru Ardelean's email address bounces, while he is listed as
a maintainer in several DT bindings files.

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

* Re: [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax
  2022-05-24 14:30 ` Geert Uytterhoeven
@ 2022-05-24 18:24   ` Jakub Kicinski
  2022-05-25 12:28     ` alexandru.tachici
  0 siblings, 1 reply; 8+ messages in thread
From: Jakub Kicinski @ 2022-05-24 18:24 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Michael Hennerich, David S . Miller, Eric Dumazet, Paolo Abeni,
	Rob Herring, Krzysztof Kozlowski, Josua Mayer, netdev,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux Kernel Mailing List, Geert Uytterhoeven, Alexandru Tachici

On Tue, 24 May 2022 16:30:18 +0200 Geert Uytterhoeven wrote:
> On Tue, May 24, 2022 at 4:12 PM Geert Uytterhoeven
> <geert+renesas@glider.be> wrote:
> > "make dt_binding_check":
> >
> >     Documentation/devicetree/bindings/net/adi,adin.yaml:40:77: [error] syntax error: mapping values are not allowed here (syntax)
> >
> > The first line of the description ends with a colon, hence the block
> > needs to be marked with a "|".
> >
> > Fixes: 1f77204e11f8b9e5 ("dt-bindings: net: adin: document phy clock output properties")
> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > ---
> >  Documentation/devicetree/bindings/net/adi,adin.yaml | 3 ++-  
> 
> Alexandru Ardelean's email address bounces, while he is listed as
> a maintainer in several DT bindings files.

Let's CC Alexandru Tachici, maybe he knows if we need to update 
and to what.

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

* Re: [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax
  2022-05-24 14:11 [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax Geert Uytterhoeven
  2022-05-24 14:30 ` Geert Uytterhoeven
@ 2022-05-25  5:33 ` Josua Mayer
  2022-05-26  1:53 ` Rob Herring
  2022-05-26  5:10 ` patchwork-bot+netdevbpf
  3 siblings, 0 replies; 8+ messages in thread
From: Josua Mayer @ 2022-05-25  5:33 UTC (permalink / raw)
  To: Geert Uytterhoeven, Michael Hennerich, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Rob Herring,
	Krzysztof Kozlowski, Alexandru Ardelean
  Cc: netdev, devicetree, linux-kernel

Thank you very much for fixing my mistake ... ... fast!

Am 24.05.22 um 17:11 schrieb Geert Uytterhoeven:
> "make dt_binding_check":
> 
>      Documentation/devicetree/bindings/net/adi,adin.yaml:40:77: [error] syntax error: mapping values are not allowed here (syntax)
> 
> The first line of the description ends with a colon, hence the block
> needs to be marked with a "|".
> 
> Fixes: 1f77204e11f8b9e5 ("dt-bindings: net: adin: document phy clock output properties")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
>   Documentation/devicetree/bindings/net/adi,adin.yaml | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/net/adi,adin.yaml b/Documentation/devicetree/bindings/net/adi,adin.yaml
> index 77750df0c2c45e19..88611720545df2ce 100644
> --- a/Documentation/devicetree/bindings/net/adi,adin.yaml
> +++ b/Documentation/devicetree/bindings/net/adi,adin.yaml
> @@ -37,7 +37,8 @@ properties:
>       default: 8
>   
>     adi,phy-output-clock:
> -    description: Select clock output on GP_CLK pin. Two clocks are available:
> +    description: |
> +      Select clock output on GP_CLK pin. Two clocks are available:
>         A 25MHz reference and a free-running 125MHz.
>         The phy can alternatively automatically switch between the reference and
>         the 125MHz clocks based on its internal state.

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

* Re: [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax
  2022-05-24 18:24   ` Jakub Kicinski
@ 2022-05-25 12:28     ` alexandru.tachici
  2022-05-25 12:31       ` Geert Uytterhoeven
  0 siblings, 1 reply; 8+ messages in thread
From: alexandru.tachici @ 2022-05-25 12:28 UTC (permalink / raw)
  To: kuba
  Cc: alexandru.tachici, davem, devicetree, edumazet, geert+renesas,
	geert, josua, krzysztof.kozlowski+dt, linux-kernel,
	michael.hennerich, netdev, pabeni, robh+dt

> On Tue, 24 May 2022 16:30:18 +0200 Geert Uytterhoeven wrote:
> > On Tue, May 24, 2022 at 4:12 PM Geert Uytterhoeven
> > <geert+renesas@glider.be> wrote:
> > > "make dt_binding_check":
> > >
> > >     Documentation/devicetree/bindings/net/adi,adin.yaml:40:77: [error] syntax error: mapping values are not allowed here (syntax)
> > >
> > > The first line of the description ends with a colon, hence the block
> > > needs to be marked with a "|".
> > >
> > > Fixes: 1f77204e11f8b9e5 ("dt-bindings: net: adin: document phy clock output properties")
> > > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > > ---
> > >  Documentation/devicetree/bindings/net/adi,adin.yaml | 3 ++-  
> > 
> > Alexandru Ardelean's email address bounces, while he is listed as
> > a maintainer in several DT bindings files.
> 
> Let's CC Alexandru Tachici, maybe he knows if we need to update 
> and to what.

Yeah, I should have updated this one. You can add me instead or I will come back with a patch.

  - Alexandru Tachici <alexandru.tachici@analog.com>

Regards,
Alexandru

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

* Re: [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax
  2022-05-25 12:28     ` alexandru.tachici
@ 2022-05-25 12:31       ` Geert Uytterhoeven
  0 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2022-05-25 12:31 UTC (permalink / raw)
  To: alexandru.tachici
  Cc: Jakub Kicinski, David S. Miller,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Eric Dumazet, Geert Uytterhoeven, Josua Mayer,
	Krzysztof Kozlowski, Linux Kernel Mailing List,
	Michael Hennerich, netdev, Paolo Abeni, Rob Herring

Hi Alexandru,

On Wed, May 25, 2022 at 2:12 PM <alexandru.tachici@analog.com> wrote:
> > On Tue, 24 May 2022 16:30:18 +0200 Geert Uytterhoeven wrote:
> > > On Tue, May 24, 2022 at 4:12 PM Geert Uytterhoeven
> > > <geert+renesas@glider.be> wrote:
> > > > "make dt_binding_check":
> > > >
> > > >     Documentation/devicetree/bindings/net/adi,adin.yaml:40:77: [error] syntax error: mapping values are not allowed here (syntax)
> > > >
> > > > The first line of the description ends with a colon, hence the block
> > > > needs to be marked with a "|".
> > > >
> > > > Fixes: 1f77204e11f8b9e5 ("dt-bindings: net: adin: document phy clock output properties")
> > > > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > > > ---
> > > >  Documentation/devicetree/bindings/net/adi,adin.yaml | 3 ++-
> > >
> > > Alexandru Ardelean's email address bounces, while he is listed as
> > > a maintainer in several DT bindings files.
> >
> > Let's CC Alexandru Tachici, maybe he knows if we need to update
> > and to what.
>
> Yeah, I should have updated this one. You can add me instead or I will come back with a patch.
>
>   - Alexandru Tachici <alexandru.tachici@analog.com>

Please send a patch (or patches).  There are multiple files listing the
bouncing address, and I don't know which devices you have inherited.

Thanks!

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

* Re: [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax
  2022-05-24 14:11 [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax Geert Uytterhoeven
  2022-05-24 14:30 ` Geert Uytterhoeven
  2022-05-25  5:33 ` Josua Mayer
@ 2022-05-26  1:53 ` Rob Herring
  2022-05-26  5:10 ` patchwork-bot+netdevbpf
  3 siblings, 0 replies; 8+ messages in thread
From: Rob Herring @ 2022-05-26  1:53 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Jakub Kicinski, Michael Hennerich, Eric Dumazet, Josua Mayer,
	Krzysztof Kozlowski, netdev, devicetree, Rob Herring,
	Alexandru Ardelean, Paolo Abeni, linux-kernel, David S . Miller

On Tue, 24 May 2022 16:11:53 +0200, Geert Uytterhoeven wrote:
> "make dt_binding_check":
> 
>     Documentation/devicetree/bindings/net/adi,adin.yaml:40:77: [error] syntax error: mapping values are not allowed here (syntax)
> 
> The first line of the description ends with a colon, hence the block
> needs to be marked with a "|".
> 
> Fixes: 1f77204e11f8b9e5 ("dt-bindings: net: adin: document phy clock output properties")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
>  Documentation/devicetree/bindings/net/adi,adin.yaml | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 

Acked-by: Rob Herring <robh@kernel.org>

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

* Re: [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax
  2022-05-24 14:11 [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2022-05-26  1:53 ` Rob Herring
@ 2022-05-26  5:10 ` patchwork-bot+netdevbpf
  3 siblings, 0 replies; 8+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-05-26  5:10 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: michael.hennerich, davem, edumazet, kuba, pabeni, robh+dt,
	krzysztof.kozlowski+dt, alexandru.ardelean, josua, netdev,
	devicetree, linux-kernel

Hello:

This patch was applied to netdev/net.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Tue, 24 May 2022 16:11:53 +0200 you wrote:
> "make dt_binding_check":
> 
>     Documentation/devicetree/bindings/net/adi,adin.yaml:40:77: [error] syntax error: mapping values are not allowed here (syntax)
> 
> The first line of the description ends with a colon, hence the block
> needs to be marked with a "|".
> 
> [...]

Here is the summary with links:
  - dt-bindings: net: adin: Fix adi,phy-output-clock description syntax
    https://git.kernel.org/netdev/net/c/6c465408a770

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2022-05-26  5:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-24 14:11 [PATCH] dt-bindings: net: adin: Fix adi,phy-output-clock description syntax Geert Uytterhoeven
2022-05-24 14:30 ` Geert Uytterhoeven
2022-05-24 18:24   ` Jakub Kicinski
2022-05-25 12:28     ` alexandru.tachici
2022-05-25 12:31       ` Geert Uytterhoeven
2022-05-25  5:33 ` Josua Mayer
2022-05-26  1:53 ` Rob Herring
2022-05-26  5:10 ` patchwork-bot+netdevbpf

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