diff options
author | Joseph Lo <josephl@nvidia.com> | 2013-08-01 17:37:45 +0800 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2013-08-01 12:15:46 -0600 |
commit | eca8f98e404934027f84f72882c5e92ffbd9e5f5 (patch) | |
tree | b8971dd923220cac38542841e03f390a59c604f4 /arch | |
parent | b3a3865d8c732d732e79ff2d45a6265dda02b73b (diff) |
ARM: tegra: dalmore: fix the irq trigger type of Palmas MFD device
The IRQ trigger type of Palmas MFD device (tps65913) is designed as
low-level sensitive on Dalmore. The wrong configuration would cause an
interrupt storm when booting the system. Fixing it in DT with appropriate
interrupt type.
Cc: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Joseph Lo <josephl@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/tegra114-dalmore.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/tegra114-dalmore.dts b/arch/arm/boot/dts/tegra114-dalmore.dts index 2bfeb89a38c5..b5a42f01b907 100644 --- a/arch/arm/boot/dts/tegra114-dalmore.dts +++ b/arch/arm/boot/dts/tegra114-dalmore.dts @@ -840,7 +840,7 @@ palmas: tps65913 { compatible = "ti,palmas"; reg = <0x58>; - interrupts = <0 86 0x4>; + interrupts = <0 86 IRQ_TYPE_LEVEL_LOW>; #interrupt-cells = <2>; interrupt-controller; |