netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next] dt-bindings: net: fec: Fix indentation
@ 2021-07-19 23:26 Fabio Estevam
  2021-07-20  4:20 ` Joakim Zhang
  2021-07-20 14:10 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2021-07-19 23:26 UTC (permalink / raw)
  To: davem; +Cc: qiangqing.zhang, robh+dt, netdev, devicetree, Fabio Estevam

The following warning is observed when running 'make dtbs_check':
Documentation/devicetree/bindings/net/fsl,fec.yaml:85:7: [warning] wrong indentation: expected 8 but found 6 (indentation)

Fix the indentation accordingly.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 Documentation/devicetree/bindings/net/fsl,fec.yaml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Documentation/devicetree/bindings/net/fsl,fec.yaml b/Documentation/devicetree/bindings/net/fsl,fec.yaml
index 7fa11f6622b1..0f8ca4e574c6 100644
--- a/Documentation/devicetree/bindings/net/fsl,fec.yaml
+++ b/Documentation/devicetree/bindings/net/fsl,fec.yaml
@@ -82,11 +82,11 @@ properties:
     maxItems: 5
     contains:
       enum:
-      - ipg
-      - ahb
-      - ptp
-      - enet_clk_ref
-      - enet_out
+        - ipg
+        - ahb
+        - ptp
+        - enet_clk_ref
+        - enet_out
 
   phy-mode: true
 
-- 
2.25.1


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

* RE: [PATCH net-next] dt-bindings: net: fec: Fix indentation
  2021-07-19 23:26 [PATCH net-next] dt-bindings: net: fec: Fix indentation Fabio Estevam
@ 2021-07-20  4:20 ` Joakim Zhang
  2021-07-20 14:10 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Joakim Zhang @ 2021-07-20  4:20 UTC (permalink / raw)
  To: Fabio Estevam, davem; +Cc: robh+dt, netdev, devicetree


Hi Fabio,

> -----Original Message-----
> From: Fabio Estevam <festevam@gmail.com>
> Sent: 2021年7月20日 7:27
> To: davem@davemloft.net
> Cc: Joakim Zhang <qiangqing.zhang@nxp.com>; robh+dt@kernel.org;
> netdev@vger.kernel.org; devicetree@vger.kernel.org; Fabio Estevam
> <festevam@gmail.com>
> Subject: [PATCH net-next] dt-bindings: net: fec: Fix indentation
> 
> The following warning is observed when running 'make dtbs_check':
> Documentation/devicetree/bindings/net/fsl,fec.yaml:85:7: [warning] wrong
> indentation: expected 8 but found 6 (indentation)
> 
> Fix the indentation accordingly.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---

Strange, why not reported when I do "make dtbs_check"? Need update something?
Reviewed-by: Joakim Zhang <qiangqing.zhang@nxp.com>

Best Regards,
Joakim Zhang
>  Documentation/devicetree/bindings/net/fsl,fec.yaml | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/net/fsl,fec.yaml
> b/Documentation/devicetree/bindings/net/fsl,fec.yaml
> index 7fa11f6622b1..0f8ca4e574c6 100644
> --- a/Documentation/devicetree/bindings/net/fsl,fec.yaml
> +++ b/Documentation/devicetree/bindings/net/fsl,fec.yaml
> @@ -82,11 +82,11 @@ properties:
>      maxItems: 5
>      contains:
>        enum:
> -      - ipg
> -      - ahb
> -      - ptp
> -      - enet_clk_ref
> -      - enet_out
> +        - ipg
> +        - ahb
> +        - ptp
> +        - enet_clk_ref
> +        - enet_out
> 
>    phy-mode: true
> 
> --
> 2.25.1


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

* Re: [PATCH net-next] dt-bindings: net: fec: Fix indentation
  2021-07-19 23:26 [PATCH net-next] dt-bindings: net: fec: Fix indentation Fabio Estevam
  2021-07-20  4:20 ` Joakim Zhang
@ 2021-07-20 14:10 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-07-20 14:10 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: davem, qiangqing.zhang, robh+dt, netdev, devicetree

Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Mon, 19 Jul 2021 20:26:39 -0300 you wrote:
> The following warning is observed when running 'make dtbs_check':
> Documentation/devicetree/bindings/net/fsl,fec.yaml:85:7: [warning] wrong indentation: expected 8 but found 6 (indentation)
> 
> Fix the indentation accordingly.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> 
> [...]

Here is the summary with links:
  - [net-next] dt-bindings: net: fec: Fix indentation
    https://git.kernel.org/netdev/net-next/c/a38c02ef48a1

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

end of thread, other threads:[~2021-07-20 14:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-19 23:26 [PATCH net-next] dt-bindings: net: fec: Fix indentation Fabio Estevam
2021-07-20  4:20 ` Joakim Zhang
2021-07-20 14: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).