diff options
| author | Hernán Gonzalez <[email protected]> | 2018-05-13 20:18:14 -0300 |
|---|---|---|
| committer | Tony Lindgren <[email protected]> | 2018-05-15 11:17:11 -0700 |
| commit | 07892315985703a4231e1319c2e0870ccde69029 (patch) | |
| tree | 7b30c93b14d949428c00a1e2da254e0643a68f44 | |
| parent | bea185b82535121e3a8fd108b75138ea91a15694 (diff) | |
ARM: dts: am335x-baltos-ir5221: 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 <[email protected]>
Signed-off-by: Tony Lindgren <[email protected]>
| -rw-r--r-- | arch/arm/boot/dts/am335x-baltos-ir5221.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/am335x-baltos-ir5221.dts b/arch/arm/boot/dts/am335x-baltos-ir5221.dts index 5d56355ba040..832ead864dc5 100644 --- a/arch/arm/boot/dts/am335x-baltos-ir5221.dts +++ b/arch/arm/boot/dts/am335x-baltos-ir5221.dts @@ -94,7 +94,7 @@ gpio-controller; #gpio-cells = <2>; interrupt-parent = <&gpio0>; - interrupts = <20 GPIO_ACTIVE_LOW>; + interrupts = <20 IRQ_TYPE_EDGE_RISING>; pinctrl-names = "default"; pinctrl-0 = <&tca6416_pins>; }; |