diff options
author | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2018-02-10 02:33:23 +0100 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2018-03-08 16:06:41 +0100 |
commit | b604ef9ceb113c5093841f1e9385f9ce5a3ef276 (patch) | |
tree | 846a3de1737271aafa022f15b155df7519797253 /arch/arm/boot/dts/tegra124-jetson-tk1.dts | |
parent | ARM: tegra: Fix ULPI regression on Tegra20 (diff) | |
download | linux-b604ef9ceb113c5093841f1e9385f9ce5a3ef276.tar.xz linux-b604ef9ceb113c5093841f1e9385f9ce5a3ef276.zip |
ARM: tegra: Use proper IRQ type definitions
This switches a few interrupt definitions that were using either
GPIO_ACTIVE_HIGH or GPIO_ACTIVE_LOW as IRQ type, which is invalid.
This is mostly a cosmetic change, that doesn't affect any driver.
Analogous to Paul's commit 38333641b6dd ("ARM: tegra: nyan: Use proper
IRQ type definitions").
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'arch/arm/boot/dts/tegra124-jetson-tk1.dts')
-rw-r--r-- | arch/arm/boot/dts/tegra124-jetson-tk1.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/tegra124-jetson-tk1.dts b/arch/arm/boot/dts/tegra124-jetson-tk1.dts index d112f85e66ed..6dbcf84dafbc 100644 --- a/arch/arm/boot/dts/tegra124-jetson-tk1.dts +++ b/arch/arm/boot/dts/tegra124-jetson-tk1.dts @@ -1418,7 +1418,7 @@ compatible = "realtek,rt5639"; reg = <0x1c>; interrupt-parent = <&gpio>; - interrupts = <TEGRA_GPIO(H, 4) GPIO_ACTIVE_HIGH>; + interrupts = <TEGRA_GPIO(H, 4) IRQ_TYPE_EDGE_FALLING>; realtek,ldo1-en-gpios = <&gpio TEGRA_GPIO(R, 2) GPIO_ACTIVE_HIGH>; }; |