From: Hernán Gonzalez Date: Sun, 13 May 2018 23:19:56 +0000 (-0300) Subject: ARM: dts: am335x-boneblue: Use IRQ_TYPE specifier X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3018f502593cadda4e03eea3ca73a36f683860de;p=linux.git ARM: dts: am335x-boneblue: Use IRQ_TYPE specifier GPIO_ACTIVE_LOW was being used to specify an interrupt, use IRQ_TYPE_EDGE_RISING instead. This improves DT readability. Signed-off-by: Hernán Gonzalez Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/boot/dts/am335x-boneblue.dts b/arch/arm/boot/dts/am335x-boneblue.dts index 58baee158e64d..7bcd72691f06d 100644 --- a/arch/arm/boot/dts/am335x-boneblue.dts +++ b/arch/arm/boot/dts/am335x-boneblue.dts @@ -364,7 +364,7 @@ compatible = "invensense,mpu9250"; reg = <0x68>; interrupt-parent = <&gpio3>; - interrupts = <21 GPIO_ACTIVE_LOW>; + interrupts = <21 IRQ_TYPE_EDGE_RISING>; i2c-gate { #address-cells = <1>; #size-cells = <0>;