aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAxel Haslam <ahaslam@baylibre.com>2024-11-06 11:38:24 +0100
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2024-12-20 18:50:20 +0000
commitc969c1e56264ecb14a3f92ae53d096f1bbee7f3b (patch)
treed054d8c6021d944c867bbdd2eb213432dc1ca0fe
parentiio: hid-sensor-prox: Fix invalid read_raw for attention (diff)
downloadwireguard-linux-c969c1e56264ecb14a3f92ae53d096f1bbee7f3b.tar.xz
wireguard-linux-c969c1e56264ecb14a3f92ae53d096f1bbee7f3b.zip
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>
Diffstat (limited to '')
-rw-r--r--Documentation/devicetree/bindings/iio/dac/adi,ad5791.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/iio/dac/adi,ad5791.yaml b/Documentation/devicetree/bindings/iio/dac/adi,ad5791.yaml
index 79cb4b78a88a..2bd89e0aa46b 100644
--- a/Documentation/devicetree/bindings/iio/dac/adi,ad5791.yaml
+++ b/Documentation/devicetree/bindings/iio/dac/adi,ad5791.yaml
@@ -91,7 +91,7 @@ examples:
vrefn-supply = <&dac_vrefn>;
reset-gpios = <&gpio_bd 16 GPIO_ACTIVE_LOW>;
clear-gpios = <&gpio_bd 17 GPIO_ACTIVE_LOW>;
- ldac-gpios = <&gpio_bd 18 GPIO_ACTIVE_HIGH>;
+ ldac-gpios = <&gpio_bd 18 GPIO_ACTIVE_LOW>;
};
};
...