diff options
author | Patrice Chotard <patrice.chotard@st.com> | 2018-04-20 17:41:41 +0200 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@st.com> | 2018-05-14 17:40:25 +0200 |
commit | 2e82e8b3776b833a8b449cf0f040d27bef72eb31 (patch) | |
tree | 8c236f6deeb886cf3138a9d8d888013e63e3b92e /arch/arm/boot/dts/stih407.dtsi | |
parent | ARM: dts: stih407-pinctrl: Fix complain about IRQ_TYPE_NONE usage (diff) | |
download | linux-2e82e8b3776b833a8b449cf0f040d27bef72eb31.tar.xz linux-2e82e8b3776b833a8b449cf0f040d27bef72eb31.zip |
ARM: dts: stih407: Fix complain about IRQ_TYPE_NONE usage
Since commit 83a86fbb5b56 ("irqchip/gic: Loudly complain about the use of IRQ_TYPE_NONE")
kernel is complaining about the IRQ_TYPE_NONE usage which shouldn't
be used.
Use IRQ_TYPE_LEVEL_HIGH instead.
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'arch/arm/boot/dts/stih407.dtsi')
-rw-r--r-- | arch/arm/boot/dts/stih407.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/stih407.dtsi b/arch/arm/boot/dts/stih407.dtsi index 57efc87dec2b..5b7951ffc350 100644 --- a/arch/arm/boot/dts/stih407.dtsi +++ b/arch/arm/boot/dts/stih407.dtsi @@ -108,7 +108,7 @@ reg = <0x8d04000 0x1000>; reg-names = "hdmi-reg"; #sound-dai-cells = <0>; - interrupts = <GIC_SPI 106 IRQ_TYPE_NONE>; + interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>; interrupt-names = "irq"; clock-names = "pix", "tmds", |