Skip to content

Commit

Permalink
ARM: dts: stm32: Fix STMPE1600 binding on stm32429i-eval board
Browse files Browse the repository at this point in the history
To declare gpio interrupt line for STMPE1600, 2 possibilities are offered:
-use gpio binding (and then the gpiolib interface inside driver)
-use interrupt binding as each gpio-controller are also interrupt controller
 on stm32f429.

In STMPE 1600 node both (gpio and interrupt) bindings are defined.
This patch fixes this issue and use only interrupt binding.

Fixes: c04b2e7 ("ARM: dts: stm32: Enable STMPE1600 gpio expander of STM32F429-EVAL board")
Signed-off-by: Alexandre Torgue <[email protected]>
  • Loading branch information
atorgue committed Oct 4, 2017
1 parent 2bd6bf0 commit 4edd812
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions arch/arm/boot/dts/stm32429i-eval.dts
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,8 @@
stmpe1600: stmpe1600@42 {
compatible = "st,stmpe1600";
reg = <0x42>;
irq-gpio = <&gpioi 8 0>;
irq-trigger = <3>;
interrupts = <8 3>;
interrupt-parent = <&exti>;
interrupt-parent = <&gpioi>;
interrupt-controller;
wakeup-source;

Expand Down

0 comments on commit 4edd812

Please sign in to comment.