Merge tag 'block-6.13-20242901' of git://git.kernel.dk/linux
[drm/drm-misc.git] / Documentation / devicetree / bindings / sound / linux,spdif.yaml
blob0f4893e11ec44b173f801431b0682d1767b79dc9
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#
7 title: Dummy SPDIF Transmitter/Receiver
9 maintainers:
10   - Mark Brown <broonie@kernel.org>
12 allOf:
13   - $ref: dai-common.yaml#
15 properties:
16   compatible:
17     enum:
18       - linux,spdif-dit
19       - linux,spdif-dir
21   "#sound-dai-cells":
22     const: 0
24   sound-name-prefix: true
26 required:
27   - "#sound-dai-cells"
28   - compatible
30 additionalProperties: false
32 examples:
33   - |
34     spdif-out {
35         #sound-dai-cells = <0>;
36         compatible = "linux,spdif-dit";
37     };
39 ...