brintos

brintos / linux-shallow public Read only

0
0
Text · 686 B · 2f27852 Raw
43 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/wlf,wm8580.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: WM8580 and WM8581 audio CODEC8 9maintainers:10  - patches@opensource.cirrus.com11 12allOf:13  - $ref: dai-common.yaml#14 15properties:16  compatible:17    enum:18      - wlf,wm858019      - wlf,wm858120 21  reg:22    maxItems: 123 24  "#sound-dai-cells":25    const: 026 27required:28  - compatible29  - reg30 31unevaluatedProperties: false32 33examples:34  - |35    i2c {36        #address-cells = <1>;37        #size-cells = <0>;38        codec@1a {39            compatible = "wlf,wm8580";40            reg = <0x1a>;41        };42    };43