Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: iio: dac: ad5791: ldac gpio is active low

On the example, the ldac gpio is flagged as active high, when in reality
its an active low gpio. Fix the example by using the active low flag for
the ldac gpio.

Fixes: baaa92d284d5 ("dt-bindings: iio: dac: ad5791: Add optional reset, clr and ldac gpios")
Signed-off-by: Axel Haslam <ahaslam@baylibre.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Link: https://patch.msgid.link/20241106103824.579292-1-ahaslam@baylibre.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

Axel Haslam and committed by
Jonathan Cameron
c969c1e5 0c45633c

+1 -1
+1 -1
Documentation/devicetree/bindings/iio/dac/adi,ad5791.yaml
··· 91 91 vrefn-supply = <&dac_vrefn>; 92 92 reset-gpios = <&gpio_bd 16 GPIO_ACTIVE_LOW>; 93 93 clear-gpios = <&gpio_bd 17 GPIO_ACTIVE_LOW>; 94 - ldac-gpios = <&gpio_bd 18 GPIO_ACTIVE_HIGH>; 94 + ldac-gpios = <&gpio_bd 18 GPIO_ACTIVE_LOW>; 95 95 }; 96 96 }; 97 97 ...