Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: arm: bcm: Convert Cygnus to YAML

Update the Broadocom Cygnus SoC binding document for boards/SoCs to use
YAML. Verified with dt_binding_check and dtbs_check.

Acked-by: Scott Branden <scott.branden@broadcom.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>

+29 -31
-31
Documentation/devicetree/bindings/arm/bcm/brcm,cygnus.txt
··· 1 - Broadcom Cygnus device tree bindings 2 - ------------------------------------ 3 - 4 - 5 - Boards with Cygnus SoCs shall have the following properties: 6 - 7 - Required root node property: 8 - 9 - BCM11300 10 - compatible = "brcm,bcm11300", "brcm,cygnus"; 11 - 12 - BCM11320 13 - compatible = "brcm,bcm11320", "brcm,cygnus"; 14 - 15 - BCM11350 16 - compatible = "brcm,bcm11350", "brcm,cygnus"; 17 - 18 - BCM11360 19 - compatible = "brcm,bcm11360", "brcm,cygnus"; 20 - 21 - BCM58300 22 - compatible = "brcm,bcm58300", "brcm,cygnus"; 23 - 24 - BCM58302 25 - compatible = "brcm,bcm58302", "brcm,cygnus"; 26 - 27 - BCM58303 28 - compatible = "brcm,bcm58303", "brcm,cygnus"; 29 - 30 - BCM58305 31 - compatible = "brcm,bcm58305", "brcm,cygnus";
+29
Documentation/devicetree/bindings/arm/bcm/brcm,cygnus.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/arm/bcm/brcm,cygnus.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Broadcom Cygnus device tree bindings 8 + 9 + maintainers: 10 + - Ray Jui <rjui@broadcom.com> 11 + - Scott Branden <sbranden@broadcom.com> 12 + 13 + properties: 14 + $nodename: 15 + const: '/' 16 + compatible: 17 + items: 18 + - enum: 19 + - brcm,bcm11300 20 + - brcm,bcm11320 21 + - brcm,bcm11350 22 + - brcm,bcm11360 23 + - brcm,bcm58300 24 + - brcm,bcm58302 25 + - brcm,bcm58303 26 + - brcm,bcm58305 27 + - const: brcm,cygnus 28 + 29 + ...