brintos

brintos / linux-shallow public Read only

0
0
Text · 830 B · 8801960 Raw
42 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/realtek,rt1015.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: RT1015 Mono Class D Audio Amplifier8 9maintainers:10  - Jack Yu <jack.yu@realtek.com>11 12properties:13  compatible:14    enum:15      - realtek,rt101516 17  reg:18    maxItems: 119 20  realtek,power-up-delay-ms:21    description: Set a delay time for flush work to be completed,22      this vlaue is adjustable depending on platform.23    maxItems: 124 25required:26  - compatible27  - reg28 29additionalProperties: false30 31examples:32  - |33    i2c {34        #address-cells = <1>;35        #size-cells = <0>;36        codec@28 {37            compatible = "realtek,rt1015";38            reg = <0x28>;39            realtek,power-up-delay-ms = <50>;40        };41    };42