brintos

brintos / linux-shallow public Read only

0
0
Text · 632 B · 0f4893e Raw
40 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/sound/linux,spdif.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Dummy SPDIF Transmitter/Receiver8 9maintainers:10  - Mark Brown <broonie@kernel.org>11 12allOf:13  - $ref: dai-common.yaml#14 15properties:16  compatible:17    enum:18      - linux,spdif-dit19      - linux,spdif-dir20 21  "#sound-dai-cells":22    const: 023 24  sound-name-prefix: true25 26required:27  - "#sound-dai-cells"28  - compatible29 30additionalProperties: false31 32examples:33  - |34    spdif-out {35        #sound-dai-cells = <0>;36        compatible = "linux,spdif-dit";37    };38 39...40