Browse Source

ARM: shmobile: lager: Fix adv7511 IRQ sensing

The adv7511 IRQ is low level triggered, not falling edge triggered. The
wrong sense configuration results in no interrupt being triggered at
all, breaking hotplug detection. Fix it.

Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tested-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Laurent Pinchart 10 years ago
parent
commit
850346eccc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/arm/boot/dts/r8a7790-lager.dts

+ 1 - 1
arch/arm/boot/dts/r8a7790-lager.dts

@@ -548,7 +548,7 @@
 		compatible = "adi,adv7511w";
 		compatible = "adi,adv7511w";
 		reg = <0x39>;
 		reg = <0x39>;
 		interrupt-parent = <&gpio1>;
 		interrupt-parent = <&gpio1>;
-		interrupts = <15 IRQ_TYPE_EDGE_FALLING>;
+		interrupts = <15 IRQ_TYPE_LEVEL_LOW>;
 
 
 		adi,input-depth = <8>;
 		adi,input-depth = <8>;
 		adi,input-colorspace = "rgb";
 		adi,input-colorspace = "rgb";