1Analog Devices ADAU1701 2 3Required properties: 4 5 - compatible: Should contain "adi,adau1701" 6 - reg: The i2c address. Value depends on the state of ADDR0 7 and ADDR1, as wired in hardware. 8 9Optional properties: 10 11 - reset-gpio: A GPIO spec to define which pin is connected to the 12 chip's !RESET pin. If specified, the driver will 13 assert a hardware reset at probe time. 14 15Examples: 16 17 i2c_bus { 18 adau1701@34 { 19 compatible = "adi,adau1701"; 20 reg = <0x34>; 21 reset-gpio = <&gpio 23 0>; 22 }; 23 }; 24