1Maxim MAX9759 Speaker Amplifier 2=============================== 3 4Required properties: 5- compatible : "maxim,max9759" 6- shutdown-gpios : the gpio connected to the shutdown pin 7- mute-gpios : the gpio connected to the mute pin 8- gain-gpios : the 2 gpios connected to the g1 and g2 pins 9 10Example: 11 12max9759: analog-amplifier { 13 compatible = "maxim,max9759"; 14 shutdown-gpios = <&gpio3 20 GPIO_ACTIVE_LOW>; 15 mute-gpios = <&gpio3 19 GPIO_ACTIVE_LOW>; 16 gain-gpios = <&gpio3 23 GPIO_ACTIVE_LOW>, 17 <&gpio3 25 GPIO_ACTIVE_LOW>; 18}; 19