* [PATCH v4 0/2] AMAC and SYSTEMPORT bindings YAML conversion @ 2021-12-08 20:27 Florian Fainelli 2021-12-08 20:28 ` [PATCH v4 1/2] dt-bindings: net: Convert AMAC to YAML Florian Fainelli 2021-12-08 20:28 ` [PATCH v4 2/2] dt-bindings: net: Convert SYSTEMPORT " Florian Fainelli 0 siblings, 2 replies; 7+ messages in thread From: Florian Fainelli @ 2021-12-08 20:27 UTC (permalink / raw) To: devicetree Cc: Florian Fainelli, David S. Miller, Jakub Kicinski, Rob Herring, Rafał Miłecki, maintainer:BROADCOM IPROC GBIT ETHERNET DRIVER, open list:NETWORKING DRIVERS, open list Hi Rob, Since the other patches have been applied to dt/next, here are the two that you requested changes to be made: Changes in v4: - updated AMAC to list all possible reg-names values and then use conditionals to adjust minItems/maxItems based upon the compatible string - updated SYSTEMPORT to indicate the tx/rx queue range, drop unnecessary quotes and use unevaluatedProperties: false Thanks! Florian Fainelli (2): dt-bindings: net: Convert AMAC to YAML dt-bindings: net: Convert SYSTEMPORT to YAML .../devicetree/bindings/net/brcm,amac.txt | 30 ------- .../devicetree/bindings/net/brcm,amac.yaml | 88 +++++++++++++++++++ .../bindings/net/brcm,systemport.txt | 38 -------- .../bindings/net/brcm,systemport.yaml | 88 +++++++++++++++++++ MAINTAINERS | 3 +- 5 files changed, 178 insertions(+), 69 deletions(-) delete mode 100644 Documentation/devicetree/bindings/net/brcm,amac.txt create mode 100644 Documentation/devicetree/bindings/net/brcm,amac.yaml delete mode 100644 Documentation/devicetree/bindings/net/brcm,systemport.txt create mode 100644 Documentation/devicetree/bindings/net/brcm,systemport.yaml -- 2.25.1 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v4 1/2] dt-bindings: net: Convert AMAC to YAML 2021-12-08 20:27 [PATCH v4 0/2] AMAC and SYSTEMPORT bindings YAML conversion Florian Fainelli @ 2021-12-08 20:28 ` Florian Fainelli 2021-12-08 21:45 ` Rob Herring 2021-12-08 20:28 ` [PATCH v4 2/2] dt-bindings: net: Convert SYSTEMPORT " Florian Fainelli 1 sibling, 1 reply; 7+ messages in thread From: Florian Fainelli @ 2021-12-08 20:28 UTC (permalink / raw) To: devicetree Cc: Florian Fainelli, David S. Miller, Jakub Kicinski, Rob Herring, Rafał Miłecki, maintainer:BROADCOM IPROC GBIT ETHERNET DRIVER, open list:NETWORKING DRIVERS, open list Convert the Broadcom AMAC Device Tree binding to YAML to help with schema and dtbs checking. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> --- .../devicetree/bindings/net/brcm,amac.txt | 30 ------- .../devicetree/bindings/net/brcm,amac.yaml | 88 +++++++++++++++++++ MAINTAINERS | 2 +- 3 files changed, 89 insertions(+), 31 deletions(-) delete mode 100644 Documentation/devicetree/bindings/net/brcm,amac.txt create mode 100644 Documentation/devicetree/bindings/net/brcm,amac.yaml diff --git a/Documentation/devicetree/bindings/net/brcm,amac.txt b/Documentation/devicetree/bindings/net/brcm,amac.txt deleted file mode 100644 index 0120ebe93262..000000000000 --- a/Documentation/devicetree/bindings/net/brcm,amac.txt +++ /dev/null @@ -1,30 +0,0 @@ -Broadcom AMAC Ethernet Controller Device Tree Bindings -------------------------------------------------------------- - -Required properties: - - compatible: "brcm,amac" - "brcm,nsp-amac" - "brcm,ns2-amac" - - reg: Address and length of the register set for the device. It - contains the information of registers in the same order as - described by reg-names - - reg-names: Names of the registers. - "amac_base": Address and length of the GMAC registers - "idm_base": Address and length of the GMAC IDM registers - (required for NSP and Northstar2) - "nicpm_base": Address and length of the NIC Port Manager - registers (required for Northstar2) - - interrupts: Interrupt number - -The MAC address will be determined using the optional properties -defined in ethernet.txt. - -Examples: - -amac0: ethernet@18022000 { - compatible = "brcm,nsp-amac"; - reg = <0x18022000 0x1000>, - <0x18110000 0x1000>; - reg-names = "amac_base", "idm_base"; - interrupts = <GIC_SPI 147 IRQ_TYPE_LEVEL_HIGH>; -}; diff --git a/Documentation/devicetree/bindings/net/brcm,amac.yaml b/Documentation/devicetree/bindings/net/brcm,amac.yaml new file mode 100644 index 000000000000..8f031932c8af --- /dev/null +++ b/Documentation/devicetree/bindings/net/brcm,amac.yaml @@ -0,0 +1,88 @@ +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/net/brcm,amac.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Broadcom AMAC Ethernet Controller Device Tree Bindings + +maintainers: + - Florian Fainelli <f.fainelli@gmail.com> + +allOf: + - $ref: "ethernet-controller.yaml#" + - if: + properties: + compatible: + contains: + enum: + - brcm,amac + then: + properties: + reg: + maxItems: 2 + reg-names: + maxItems: 2 + + - if: + properties: + compatible: + contains: + enum: + - brcm,nsp-amac + then: + properties: + reg: + minItems: 2 + maxItems: 2 + reg-names: + minItems: 2 + maxItems: 2 + + - if: + properties: + compatible: + contains: + enum: + - brcm,ns2-amac + then: + properties: + reg: + minItems: 3 + reg-names: + minItems: 3 + +properties: + compatible: + enum: + - brcm,amac + - brcm,nsp-amac + - brcm,ns2-amac + + interrupts: + maxItems: 1 + + reg: + minItems: 1 + maxItems: 3 + + reg-names: + minItems: 1 + items: + - const: amac_base + - const: idm_base + - const: nicpm_base + +unevaluatedProperties: false + +examples: + - | + #include <dt-bindings/interrupt-controller/arm-gic.h> + + amac0: ethernet@18022000 { + compatible = "brcm,nsp-amac"; + reg = <0x18022000 0x1000>, + <0x18110000 0x1000>; + reg-names = "amac_base", "idm_base"; + interrupts = <GIC_SPI 147 IRQ_TYPE_LEVEL_HIGH>; + }; diff --git a/MAINTAINERS b/MAINTAINERS index 5e1064c23f41..404e76d625f1 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3861,7 +3861,7 @@ M: Rafał Miłecki <rafal@milecki.pl> M: bcm-kernel-feedback-list@broadcom.com L: netdev@vger.kernel.org S: Maintained -F: Documentation/devicetree/bindings/net/brcm,amac.txt +F: Documentation/devicetree/bindings/net/brcm,amac.yaml F: drivers/net/ethernet/broadcom/bgmac* F: drivers/net/ethernet/broadcom/unimac.h -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v4 1/2] dt-bindings: net: Convert AMAC to YAML 2021-12-08 20:28 ` [PATCH v4 1/2] dt-bindings: net: Convert AMAC to YAML Florian Fainelli @ 2021-12-08 21:45 ` Rob Herring 0 siblings, 0 replies; 7+ messages in thread From: Rob Herring @ 2021-12-08 21:45 UTC (permalink / raw) To: Florian Fainelli Cc: Rob Herring, David S. Miller, Jakub Kicinski, bcm-kernel-feedback-list, Rafał Miłecki, devicetree, linux-kernel, netdev On Wed, 08 Dec 2021 12:28:00 -0800, Florian Fainelli wrote: > Convert the Broadcom AMAC Device Tree binding to YAML to help with > schema and dtbs checking. > > Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> > --- > .../devicetree/bindings/net/brcm,amac.txt | 30 ------- > .../devicetree/bindings/net/brcm,amac.yaml | 88 +++++++++++++++++++ > MAINTAINERS | 2 +- > 3 files changed, 89 insertions(+), 31 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/net/brcm,amac.txt > create mode 100644 Documentation/devicetree/bindings/net/brcm,amac.yaml > Applied, thanks! ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v4 2/2] dt-bindings: net: Convert SYSTEMPORT to YAML 2021-12-08 20:27 [PATCH v4 0/2] AMAC and SYSTEMPORT bindings YAML conversion Florian Fainelli 2021-12-08 20:28 ` [PATCH v4 1/2] dt-bindings: net: Convert AMAC to YAML Florian Fainelli @ 2021-12-08 20:28 ` Florian Fainelli 2021-12-08 21:47 ` Rob Herring 2021-12-08 21:47 ` Rob Herring 1 sibling, 2 replies; 7+ messages in thread From: Florian Fainelli @ 2021-12-08 20:28 UTC (permalink / raw) To: devicetree Cc: Florian Fainelli, David S. Miller, Jakub Kicinski, Rob Herring, Rafał Miłecki, maintainer:BROADCOM IPROC GBIT ETHERNET DRIVER, open list:NETWORKING DRIVERS, open list Convert the Broadcom SYSTEMPORT Ethernet controller Device Tree binding to YAML. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> --- .../bindings/net/brcm,systemport.txt | 38 -------- .../bindings/net/brcm,systemport.yaml | 88 +++++++++++++++++++ MAINTAINERS | 1 + 3 files changed, 89 insertions(+), 38 deletions(-) delete mode 100644 Documentation/devicetree/bindings/net/brcm,systemport.txt create mode 100644 Documentation/devicetree/bindings/net/brcm,systemport.yaml diff --git a/Documentation/devicetree/bindings/net/brcm,systemport.txt b/Documentation/devicetree/bindings/net/brcm,systemport.txt deleted file mode 100644 index 75736739bfdd..000000000000 --- a/Documentation/devicetree/bindings/net/brcm,systemport.txt +++ /dev/null @@ -1,38 +0,0 @@ -* Broadcom BCM7xxx Ethernet Systemport Controller (SYSTEMPORT) - -Required properties: -- compatible: should be one of: - "brcm,systemport-v1.00" - "brcm,systemportlite-v1.00" or - "brcm,systemport" -- reg: address and length of the register set for the device. -- interrupts: interrupts for the device, first cell must be for the rx - interrupts, and the second cell should be for the transmit queues. An - optional third interrupt cell for Wake-on-LAN can be specified -- local-mac-address: Ethernet MAC address (48 bits) of this adapter -- phy-mode: Should be a string describing the PHY interface to the - Ethernet switch/PHY, see Documentation/devicetree/bindings/net/ethernet.txt -- fixed-link: see Documentation/devicetree/bindings/net/fixed-link.txt for - the property specific details - -Optional properties: -- systemport,num-tier2-arb: number of tier 2 arbiters, an integer -- systemport,num-tier1-arb: number of tier 1 arbiters, an integer -- systemport,num-txq: number of HW transmit queues, an integer -- systemport,num-rxq: number of HW receive queues, an integer -- clocks: When provided, must be two phandles to the functional clocks nodes of - the SYSTEMPORT block. The first phandle is the main SYSTEMPORT clock used - during normal operation, while the second phandle is the Wake-on-LAN clock. -- clock-names: When provided, names of the functional clock phandles, first - name should be "sw_sysport" and second should be "sw_sysportwol". - -Example: -ethernet@f04a0000 { - compatible = "brcm,systemport-v1.00"; - reg = <0xf04a0000 0x4650>; - local-mac-address = [ 00 11 22 33 44 55 ]; - fixed-link = <0 1 1000 0 0>; - phy-mode = "gmii"; - interrupts = <0x0 0x16 0x0>, - <0x0 0x17 0x0>; -}; diff --git a/Documentation/devicetree/bindings/net/brcm,systemport.yaml b/Documentation/devicetree/bindings/net/brcm,systemport.yaml new file mode 100644 index 000000000000..53ecec8c864e --- /dev/null +++ b/Documentation/devicetree/bindings/net/brcm,systemport.yaml @@ -0,0 +1,88 @@ +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/net/brcm,systemport.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Broadcom BCM7xxx Ethernet Systemport Controller (SYSTEMPORT) + +maintainers: + - Florian Fainelli <f.fainelli@gmail.com> + +properties: + compatible: + enum: + - brcm,systemport-v1.00 + - brcm,systemportlite-v1.00 + - brcm,systemport + + reg: + maxItems: 1 + + interrupts: + minItems: 2 + items: + - description: interrupt line for RX queues + - description: interrupt line for TX queues + - description: interrupt line for Wake-on-LAN + + clocks: + items: + - description: main clock + - description: Wake-on-LAN clock + + clock-names: + items: + - const: sw_sysport + - const: sw_sysportwol + + systemport,num-tier2-arb: + $ref: /schemas/types.yaml#/definitions/uint32 + description: + Number of tier 2 arbiters + + systemport,num-tier1-arb: + $ref: /schemas/types.yaml#/definitions/uint32 + description: + Number of tier 2 arbiters + + systemport,num-txq: + $ref: /schemas/types.yaml#/definitions/uint32 + items: + - minimum: 1 + - maximum: 32 + description: + Number of HW transmit queues + + systemport,num-rxq: + $ref: /schemas/types.yaml#/definitions/uint32 + items: + - minimum: 1 + - maximum: 32 + description: + Number of HW receive queues + +required: + - reg + - interrupts + - phy-mode + +allOf: + - $ref: "ethernet-controller.yaml#" + +unevaluatedProperties: false + +examples: + - | + ethernet@f04a0000 { + compatible = "brcm,systemport-v1.00"; + reg = <0xf04a0000 0x4650>; + local-mac-address = [ 00 11 22 33 44 55 ]; + phy-mode = "gmii"; + interrupts = <0x0 0x16 0x0>, + <0x0 0x17 0x0>; + fixed-link { + speed = <1000>; + full-duplex; + }; + }; diff --git a/MAINTAINERS b/MAINTAINERS index 404e76d625f1..ed8de605fe4b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3972,6 +3972,7 @@ L: netdev@vger.kernel.org S: Supported F: drivers/net/ethernet/broadcom/bcmsysport.* F: drivers/net/ethernet/broadcom/unimac.h +F: Documentation/devicetree/bindings/net/brcm,systemport.yaml BROADCOM TG3 GIGABIT ETHERNET DRIVER M: Siva Reddy Kallam <siva.kallam@broadcom.com> -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v4 2/2] dt-bindings: net: Convert SYSTEMPORT to YAML 2021-12-08 20:28 ` [PATCH v4 2/2] dt-bindings: net: Convert SYSTEMPORT " Florian Fainelli @ 2021-12-08 21:47 ` Rob Herring 2021-12-08 21:47 ` Rob Herring 1 sibling, 0 replies; 7+ messages in thread From: Rob Herring @ 2021-12-08 21:47 UTC (permalink / raw) To: Florian Fainelli Cc: devicetree, David S. Miller, Jakub Kicinski, Rafał Miłecki, maintainer:BROADCOM IPROC GBIT ETHERNET DRIVER, open list:NETWORKING DRIVERS, open list On Wed, Dec 08, 2021 at 12:28:01PM -0800, Florian Fainelli wrote: > Convert the Broadcom SYSTEMPORT Ethernet controller Device Tree binding > to YAML. > > Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> > --- > .../bindings/net/brcm,systemport.txt | 38 -------- > .../bindings/net/brcm,systemport.yaml | 88 +++++++++++++++++++ > MAINTAINERS | 1 + > 3 files changed, 89 insertions(+), 38 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/net/brcm,systemport.txt > create mode 100644 Documentation/devicetree/bindings/net/brcm,systemport.yaml > > diff --git a/Documentation/devicetree/bindings/net/brcm,systemport.txt b/Documentation/devicetree/bindings/net/brcm,systemport.txt > deleted file mode 100644 > index 75736739bfdd..000000000000 > --- a/Documentation/devicetree/bindings/net/brcm,systemport.txt > +++ /dev/null > @@ -1,38 +0,0 @@ > -* Broadcom BCM7xxx Ethernet Systemport Controller (SYSTEMPORT) > - > -Required properties: > -- compatible: should be one of: > - "brcm,systemport-v1.00" > - "brcm,systemportlite-v1.00" or > - "brcm,systemport" > -- reg: address and length of the register set for the device. > -- interrupts: interrupts for the device, first cell must be for the rx > - interrupts, and the second cell should be for the transmit queues. An > - optional third interrupt cell for Wake-on-LAN can be specified > -- local-mac-address: Ethernet MAC address (48 bits) of this adapter > -- phy-mode: Should be a string describing the PHY interface to the > - Ethernet switch/PHY, see Documentation/devicetree/bindings/net/ethernet.txt > -- fixed-link: see Documentation/devicetree/bindings/net/fixed-link.txt for > - the property specific details > - > -Optional properties: > -- systemport,num-tier2-arb: number of tier 2 arbiters, an integer > -- systemport,num-tier1-arb: number of tier 1 arbiters, an integer > -- systemport,num-txq: number of HW transmit queues, an integer > -- systemport,num-rxq: number of HW receive queues, an integer > -- clocks: When provided, must be two phandles to the functional clocks nodes of > - the SYSTEMPORT block. The first phandle is the main SYSTEMPORT clock used > - during normal operation, while the second phandle is the Wake-on-LAN clock. > -- clock-names: When provided, names of the functional clock phandles, first > - name should be "sw_sysport" and second should be "sw_sysportwol". > - > -Example: > -ethernet@f04a0000 { > - compatible = "brcm,systemport-v1.00"; > - reg = <0xf04a0000 0x4650>; > - local-mac-address = [ 00 11 22 33 44 55 ]; > - fixed-link = <0 1 1000 0 0>; > - phy-mode = "gmii"; > - interrupts = <0x0 0x16 0x0>, > - <0x0 0x17 0x0>; > -}; > diff --git a/Documentation/devicetree/bindings/net/brcm,systemport.yaml b/Documentation/devicetree/bindings/net/brcm,systemport.yaml > new file mode 100644 > index 000000000000..53ecec8c864e > --- /dev/null > +++ b/Documentation/devicetree/bindings/net/brcm,systemport.yaml > @@ -0,0 +1,88 @@ > +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/net/brcm,systemport.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: Broadcom BCM7xxx Ethernet Systemport Controller (SYSTEMPORT) > + > +maintainers: > + - Florian Fainelli <f.fainelli@gmail.com> > + > +properties: > + compatible: > + enum: > + - brcm,systemport-v1.00 > + - brcm,systemportlite-v1.00 > + - brcm,systemport > + > + reg: > + maxItems: 1 > + > + interrupts: > + minItems: 2 > + items: > + - description: interrupt line for RX queues > + - description: interrupt line for TX queues > + - description: interrupt line for Wake-on-LAN > + > + clocks: > + items: > + - description: main clock > + - description: Wake-on-LAN clock > + > + clock-names: > + items: > + - const: sw_sysport > + - const: sw_sysportwol > + > + systemport,num-tier2-arb: > + $ref: /schemas/types.yaml#/definitions/uint32 > + description: > + Number of tier 2 arbiters > + > + systemport,num-tier1-arb: > + $ref: /schemas/types.yaml#/definitions/uint32 > + description: > + Number of tier 2 arbiters > + > + systemport,num-txq: > + $ref: /schemas/types.yaml#/definitions/uint32 > + items: > + - minimum: 1 > + - maximum: 32 This says you have an array of 2 entries. I'll fix up. > + description: > + Number of HW transmit queues > + > + systemport,num-rxq: > + $ref: /schemas/types.yaml#/definitions/uint32 > + items: > + - minimum: 1 > + - maximum: 32 > + description: > + Number of HW receive queues > + > +required: > + - reg > + - interrupts > + - phy-mode > + > +allOf: > + - $ref: "ethernet-controller.yaml#" > + > +unevaluatedProperties: false > + > +examples: > + - | > + ethernet@f04a0000 { > + compatible = "brcm,systemport-v1.00"; > + reg = <0xf04a0000 0x4650>; > + local-mac-address = [ 00 11 22 33 44 55 ]; > + phy-mode = "gmii"; > + interrupts = <0x0 0x16 0x0>, > + <0x0 0x17 0x0>; > + fixed-link { > + speed = <1000>; > + full-duplex; > + }; > + }; > diff --git a/MAINTAINERS b/MAINTAINERS > index 404e76d625f1..ed8de605fe4b 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -3972,6 +3972,7 @@ L: netdev@vger.kernel.org > S: Supported > F: drivers/net/ethernet/broadcom/bcmsysport.* > F: drivers/net/ethernet/broadcom/unimac.h > +F: Documentation/devicetree/bindings/net/brcm,systemport.yaml > > BROADCOM TG3 GIGABIT ETHERNET DRIVER > M: Siva Reddy Kallam <siva.kallam@broadcom.com> > -- > 2.25.1 > > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 2/2] dt-bindings: net: Convert SYSTEMPORT to YAML 2021-12-08 20:28 ` [PATCH v4 2/2] dt-bindings: net: Convert SYSTEMPORT " Florian Fainelli 2021-12-08 21:47 ` Rob Herring @ 2021-12-08 21:47 ` Rob Herring 2021-12-09 0:49 ` Florian Fainelli 1 sibling, 1 reply; 7+ messages in thread From: Rob Herring @ 2021-12-08 21:47 UTC (permalink / raw) To: Florian Fainelli Cc: Jakub Kicinski, bcm-kernel-feedback-list, linux-kernel, David S. Miller, Rafał Miłecki, netdev, Rob Herring, devicetree On Wed, 08 Dec 2021 12:28:01 -0800, Florian Fainelli wrote: > Convert the Broadcom SYSTEMPORT Ethernet controller Device Tree binding > to YAML. > > Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> > --- > .../bindings/net/brcm,systemport.txt | 38 -------- > .../bindings/net/brcm,systemport.yaml | 88 +++++++++++++++++++ > MAINTAINERS | 1 + > 3 files changed, 89 insertions(+), 38 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/net/brcm,systemport.txt > create mode 100644 Documentation/devicetree/bindings/net/brcm,systemport.yaml > Applied, thanks! ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 2/2] dt-bindings: net: Convert SYSTEMPORT to YAML 2021-12-08 21:47 ` Rob Herring @ 2021-12-09 0:49 ` Florian Fainelli 0 siblings, 0 replies; 7+ messages in thread From: Florian Fainelli @ 2021-12-09 0:49 UTC (permalink / raw) To: Rob Herring Cc: Jakub Kicinski, bcm-kernel-feedback-list, linux-kernel, David S. Miller, Rafał Miłecki, netdev, Rob Herring, devicetree On 12/8/21 1:47 PM, Rob Herring wrote: > On Wed, 08 Dec 2021 12:28:01 -0800, Florian Fainelli wrote: >> Convert the Broadcom SYSTEMPORT Ethernet controller Device Tree binding >> to YAML. >> >> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> >> --- >> .../bindings/net/brcm,systemport.txt | 38 -------- >> .../bindings/net/brcm,systemport.yaml | 88 +++++++++++++++++++ >> MAINTAINERS | 1 + >> 3 files changed, 89 insertions(+), 38 deletions(-) >> delete mode 100644 Documentation/devicetree/bindings/net/brcm,systemport.txt >> create mode 100644 Documentation/devicetree/bindings/net/brcm,systemport.yaml >> > > Applied, thanks! Thanks for applying the patches and fixing up my mistakes in the process. -- Florian ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-12-09 0:49 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-12-08 20:27 [PATCH v4 0/2] AMAC and SYSTEMPORT bindings YAML conversion Florian Fainelli 2021-12-08 20:28 ` [PATCH v4 1/2] dt-bindings: net: Convert AMAC to YAML Florian Fainelli 2021-12-08 21:45 ` Rob Herring 2021-12-08 20:28 ` [PATCH v4 2/2] dt-bindings: net: Convert SYSTEMPORT " Florian Fainelli 2021-12-08 21:47 ` Rob Herring 2021-12-08 21:47 ` Rob Herring 2021-12-09 0:49 ` Florian Fainelli
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).