diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2012-08-02 22:08:26 +0800 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2012-08-03 22:36:18 +0800 |
commit | 65dee07c9927d4af17b1832e4b7a1bb704607f91 (patch) | |
tree | 1913be6e399a73fb0635ee5b4fc7d6258008c704 /arch | |
parent | 1eec0c569523782392b5e6245effddb626213b8c (diff) | |
download | linux-3.10-65dee07c9927d4af17b1832e4b7a1bb704607f91.tar.gz linux-3.10-65dee07c9927d4af17b1832e4b7a1bb704607f91.tar.bz2 linux-3.10-65dee07c9927d4af17b1832e4b7a1bb704607f91.zip |
ARM: dts: imx: fix gpio interrupts property
Commit 88cde8b (ARM: dts: imx: update #interrupt-cells for gpio nodes)
changes gpio #interrupt-cells from 1 to 2 without updating the users.
It causes the gpio irq requesting call failing in client driver's probe
function.
Add the irq type cell for those gpio interrupt users to fix their
driver probe failure.
Reported-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/imx51-babbage.dts | 2 | ||||
-rw-r--r-- | arch/arm/boot/dts/imx53-ard.dts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/imx51-babbage.dts b/arch/arm/boot/dts/imx51-babbage.dts index de065b5976e..cd86177a3ea 100644 --- a/arch/arm/boot/dts/imx51-babbage.dts +++ b/arch/arm/boot/dts/imx51-babbage.dts @@ -53,7 +53,7 @@ spi-max-frequency = <6000000>; reg = <0>; interrupt-parent = <&gpio1>; - interrupts = <8>; + interrupts = <8 0x4>; regulators { sw1_reg: sw1 { diff --git a/arch/arm/boot/dts/imx53-ard.dts b/arch/arm/boot/dts/imx53-ard.dts index fa95f4aa8ce..da895e93a99 100644 --- a/arch/arm/boot/dts/imx53-ard.dts +++ b/arch/arm/boot/dts/imx53-ard.dts @@ -64,7 +64,7 @@ reg = <0xf4000000 0x2000000>; phy-mode = "mii"; interrupt-parent = <&gpio2>; - interrupts = <31>; + interrupts = <31 0x8>; reg-io-width = <4>; /* * VDD33A and VDDVARIO of LAN9220 are supplied by |