brintos

brintos / linux-shallow public Read only

0
0
Text · 716 B · 14fba34 Raw
43 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/maxim,max98371.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Maxim MAX98371 audio codec8 9maintainers:10  - anish kumar <yesanishhere@gmail.com>11 12allOf:13  - $ref: dai-common.yaml#14 15properties:16  compatible:17    const: maxim,max9837118 19  '#sound-dai-cells':20    const: 021 22  reg:23    maxItems: 124 25required:26  - compatible27  - reg28 29unevaluatedProperties: false30 31examples:32  - |33    i2c {34        #address-cells = <1>;35        #size-cells = <0>;36 37        codec@31 {38            compatible = "maxim,max98371";39            reg = <0x31>;40            #sound-dai-cells = <0>;41        };42    };43