linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: sh_eth: Sort compatible string in increasing number of the SoC
@ 2020-04-24 10:38 Lad Prabhakar
  2020-04-24 11:59 ` Sergei Shtylyov
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Lad Prabhakar @ 2020-04-24 10:38 UTC (permalink / raw)
  To: Sergei Shtylyov, David S. Miller, Geert Uytterhoeven,
	Rob Herring, Simon Horman
  Cc: Lad Prabhakar, netdev, linux-renesas-soc, devicetree,
	linux-kernel, Lad Prabhakar

Sort the items in the compatible string list in increasing number of SoC.

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 Documentation/devicetree/bindings/net/renesas,ether.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/net/renesas,ether.yaml b/Documentation/devicetree/bindings/net/renesas,ether.yaml
index 2eaa879..005a3ae 100644
--- a/Documentation/devicetree/bindings/net/renesas,ether.yaml
+++ b/Documentation/devicetree/bindings/net/renesas,ether.yaml
@@ -29,8 +29,8 @@ properties:
               - renesas,rcar-gen1-ether  # a generic R-Car Gen1 device
       - items:
           - enum:
-              - renesas,ether-r8a7745    # device is a part of R8A7745 SoC
               - renesas,ether-r8a7743    # device is a part of R8A7743 SoC
+              - renesas,ether-r8a7745    # device is a part of R8A7745 SoC
               - renesas,ether-r8a7790    # device is a part of R8A7790 SoC
               - renesas,ether-r8a7791    # device is a part of R8A7791 SoC
               - renesas,ether-r8a7793    # device is a part of R8A7793 SoC
-- 
2.7.4


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

* Re: [PATCH] dt-bindings: sh_eth: Sort compatible string in increasing number of the SoC
  2020-04-24 10:38 [PATCH] dt-bindings: sh_eth: Sort compatible string in increasing number of the SoC Lad Prabhakar
@ 2020-04-24 11:59 ` Sergei Shtylyov
  2020-04-27  7:32 ` Geert Uytterhoeven
  2020-05-11 21:22 ` Rob Herring
  2 siblings, 0 replies; 5+ messages in thread
From: Sergei Shtylyov @ 2020-04-24 11:59 UTC (permalink / raw)
  To: Lad Prabhakar, David S. Miller, Geert Uytterhoeven, Rob Herring,
	Simon Horman
  Cc: Lad Prabhakar, netdev, linux-renesas-soc, devicetree, linux-kernel

Hello!

   The bindings file is no longer called sh_eth, please adapt the subject to
the new DT reality...

On 04/24/2020 01:38 PM, Lad Prabhakar wrote:

> Sort the items in the compatible string list in increasing number of SoC.
> 
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

Reviewed-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

[...]

MBR, Sergei

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

* Re: [PATCH] dt-bindings: sh_eth: Sort compatible string in increasing number of the SoC
  2020-04-24 10:38 [PATCH] dt-bindings: sh_eth: Sort compatible string in increasing number of the SoC Lad Prabhakar
  2020-04-24 11:59 ` Sergei Shtylyov
@ 2020-04-27  7:32 ` Geert Uytterhoeven
  2020-05-11 21:22 ` Rob Herring
  2 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2020-04-27  7:32 UTC (permalink / raw)
  To: Lad Prabhakar
  Cc: Sergei Shtylyov, David S. Miller, Rob Herring, Simon Horman,
	Lad Prabhakar, netdev, Linux-Renesas,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux Kernel Mailing List

On Fri, Apr 24, 2020 at 12:38 PM Lad Prabhakar
<prabhakar.mahadev-lad.rj@bp.renesas.com> wrote:
> Sort the items in the compatible string list in increasing number of SoC.
>
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

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

* Re: [PATCH] dt-bindings: sh_eth: Sort compatible string in increasing number of the SoC
  2020-04-24 10:38 [PATCH] dt-bindings: sh_eth: Sort compatible string in increasing number of the SoC Lad Prabhakar
  2020-04-24 11:59 ` Sergei Shtylyov
  2020-04-27  7:32 ` Geert Uytterhoeven
@ 2020-05-11 21:22 ` Rob Herring
  2020-05-12  7:50   ` Sergei Shtylyov
  2 siblings, 1 reply; 5+ messages in thread
From: Rob Herring @ 2020-05-11 21:22 UTC (permalink / raw)
  To: Lad Prabhakar
  Cc: netdev, Rob Herring, Sergei Shtylyov, Lad Prabhakar,
	linux-kernel, Simon Horman, linux-renesas-soc,
	Geert Uytterhoeven, David S. Miller, devicetree

On Fri, 24 Apr 2020 11:38:15 +0100, Lad Prabhakar wrote:
> Sort the items in the compatible string list in increasing number of SoC.
> 
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
> ---
>  Documentation/devicetree/bindings/net/renesas,ether.yaml | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Applied, thanks!

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

* Re: [PATCH] dt-bindings: sh_eth: Sort compatible string in increasing number of the SoC
  2020-05-11 21:22 ` Rob Herring
@ 2020-05-12  7:50   ` Sergei Shtylyov
  0 siblings, 0 replies; 5+ messages in thread
From: Sergei Shtylyov @ 2020-05-12  7:50 UTC (permalink / raw)
  To: Rob Herring, Lad Prabhakar
  Cc: netdev, Rob Herring, Lad Prabhakar, linux-kernel, Simon Horman,
	linux-renesas-soc, Geert Uytterhoeven, David S. Miller,
	devicetree

Hello!

On 12.05.2020 0:22, Rob Herring wrote:

>> Sort the items in the compatible string list in increasing number of SoC.
>>
>> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
>> ---
>>   Documentation/devicetree/bindings/net/renesas,ether.yaml | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
> 
> Applied, thanks!

    Mhm, there was v2 with a corrected subject?

MBR, Sergei

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

end of thread, other threads:[~2020-05-12  7:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-24 10:38 [PATCH] dt-bindings: sh_eth: Sort compatible string in increasing number of the SoC Lad Prabhakar
2020-04-24 11:59 ` Sergei Shtylyov
2020-04-27  7:32 ` Geert Uytterhoeven
2020-05-11 21:22 ` Rob Herring
2020-05-12  7:50   ` Sergei Shtylyov

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