1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/sound/irondevice,sma1303.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Iron Device SMA1303 Audio Amplifier 8 9maintainers: 10 - Kiseok Jo <kiseok.jo@irondevice.com> 11 12description: 13 SMA1303 digital class-D audio amplifier with an integrated boost converter. 14 15allOf: 16 - $ref: name-prefix.yaml# 17 18required: 19 - compatible 20 - reg 21 22additionalProperties: true 23 24examples: 25 - | 26 #include <dt-bindings/gpio/gpio.h> 27 i2c_bus { 28 sma1303_amp: sma1303@1e { 29 compatible = "irondevice,sma1303"; 30 reg = <0x1e>; 31 }; 32 }; 33