blob: c6b070e1d014729c86074c5d58a8685d488a9633 [file] [log] [blame]
Maxime Ripard1c02b742021-09-01 11:18:03 +02001# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/sound/linux,spdif-dit.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Dummy SPDIF Transmitter Device Tree Bindings
8
9maintainers:
10 - Mark Brown <broonie@kernel.org>
11
12properties:
13 compatible:
14 const: linux,spdif-dit
15
16 "#sound-dai-cells":
17 const: 0
18
19required:
20 - "#sound-dai-cells"
21 - compatible
22
23additionalProperties: false
24
25examples:
26 - |
27 spdif-out {
28 #sound-dai-cells = <0>;
29 compatible = "linux,spdif-dit";
30 };
31
32...