Commit 38333641 authored by Paul Kocialkowski's avatar Paul Kocialkowski Committed by Thierry Reding

ARM: tegra: nyan: Use proper IRQ type definitions

This switches a few interrupt definitions that were using
GPIO_ACTIVE_HIGH as IRQ type, which is invalid.

This is mostly a cosmetic change, that doesn't affect any driver.
Signed-off-by: default avatarPaul Kocialkowski <contact@paulk.fr>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent a3e4863e
...@@ -65,7 +65,7 @@ acodec: audio-codec@10 { ...@@ -65,7 +65,7 @@ acodec: audio-codec@10 {
compatible = "maxim,max98090"; compatible = "maxim,max98090";
reg = <0x10>; reg = <0x10>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <TEGRA_GPIO(H, 4) GPIO_ACTIVE_HIGH>; interrupts = <TEGRA_GPIO(H, 4) IRQ_TYPE_EDGE_FALLING>;
}; };
temperature-sensor@4c { temperature-sensor@4c {
...@@ -331,7 +331,7 @@ charger: bq24735@9 { ...@@ -331,7 +331,7 @@ charger: bq24735@9 {
reg = <0x9>; reg = <0x9>;
interrupt-parent = <&gpio>; interrupt-parent = <&gpio>;
interrupts = <TEGRA_GPIO(J, 0) interrupts = <TEGRA_GPIO(J, 0)
GPIO_ACTIVE_HIGH>; IRQ_TYPE_EDGE_BOTH>;
ti,ac-detect-gpios = <&gpio ti,ac-detect-gpios = <&gpio
TEGRA_GPIO(J, 0) TEGRA_GPIO(J, 0)
GPIO_ACTIVE_HIGH>; GPIO_ACTIVE_HIGH>;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment