From: Petre Rodan Date: Sat, 13 Sep 2025 15:39:24 +0000 (+0300) Subject: dt-bindings: iio: accel: bosch,bma220 set irq type in example block X-Git-Tag: v6.19-rc1~65^2~58^2~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92c7ae3486143a44ecc974531704b905d22a784a;p=thirdparty%2Fkernel%2Flinux.git dt-bindings: iio: accel: bosch,bma220 set irq type in example block Set the interrupt type to rising edge within the example block in order to match the new driver. The entry that got replaced was not in use by the original driver. Signed-off-by: Petre Rodan Acked-by: Krzysztof Kozlowski Signed-off-by: Jonathan Cameron --- diff --git a/Documentation/devicetree/bindings/iio/accel/bosch,bma220.yaml b/Documentation/devicetree/bindings/iio/accel/bosch,bma220.yaml index 0e27ec74065ac..8c820c27f781e 100644 --- a/Documentation/devicetree/bindings/iio/accel/bosch,bma220.yaml +++ b/Documentation/devicetree/bindings/iio/accel/bosch,bma220.yaml @@ -50,7 +50,7 @@ examples: spi-cpol; spi-cpha; interrupt-parent = <&gpio0>; - interrupts = <0 IRQ_TYPE_LEVEL_HIGH>; + interrupts = <0 IRQ_TYPE_EDGE_RISING>; }; }; ...