1# SPDX-License-Identifier: GPL-2.0 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/sound/linux,spdif.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Dummy SPDIF Transmitter/Receiver 8 9maintainers: 10 - Mark Brown <broonie@kernel.org> 11 12allOf: 13 - $ref: dai-common.yaml# 14 15properties: 16 compatible: 17 enum: 18 - linux,spdif-dit 19 - linux,spdif-dir 20 21 "#sound-dai-cells": 22 const: 0 23 24 sound-name-prefix: true 25 26required: 27 - "#sound-dai-cells" 28 - compatible 29 30additionalProperties: false 31 32examples: 33 - | 34 spdif-out { 35 #sound-dai-cells = <0>; 36 compatible = "linux,spdif-dit"; 37 }; 38 39... 40