Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dts: arm: stih418: 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: Alain Volmat <avolmat@me.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>

authored by

Alain Volmat and committed by
Patrice Chotard
248a8ffd 8f3d9f35

+4 -4
+4 -4
arch/arm/boot/dts/stih418.dtsi
··· 50 50 ohci0: usb@9a03c00 { 51 51 compatible = "st,st-ohci-300x"; 52 52 reg = <0x9a03c00 0x100>; 53 - interrupts = <GIC_SPI 180 IRQ_TYPE_NONE>; 53 + interrupts = <GIC_SPI 180 IRQ_TYPE_LEVEL_HIGH>; 54 54 clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>; 55 55 resets = <&powerdown STIH407_USB2_PORT0_POWERDOWN>, 56 56 <&softreset STIH407_USB2_PORT0_SOFTRESET>; ··· 62 62 ehci0: usb@9a03e00 { 63 63 compatible = "st,st-ehci-300x"; 64 64 reg = <0x9a03e00 0x100>; 65 - interrupts = <GIC_SPI 151 IRQ_TYPE_NONE>; 65 + interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>; 66 66 pinctrl-names = "default"; 67 67 pinctrl-0 = <&pinctrl_usb0>; 68 68 clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>; ··· 76 76 ohci1: usb@9a83c00 { 77 77 compatible = "st,st-ohci-300x"; 78 78 reg = <0x9a83c00 0x100>; 79 - interrupts = <GIC_SPI 181 IRQ_TYPE_NONE>; 79 + interrupts = <GIC_SPI 181 IRQ_TYPE_LEVEL_HIGH>; 80 80 clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>; 81 81 resets = <&powerdown STIH407_USB2_PORT1_POWERDOWN>, 82 82 <&softreset STIH407_USB2_PORT1_SOFTRESET>; ··· 88 88 ehci1: usb@9a83e00 { 89 89 compatible = "st,st-ehci-300x"; 90 90 reg = <0x9a83e00 0x100>; 91 - interrupts = <GIC_SPI 153 IRQ_TYPE_NONE>; 91 + interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>; 92 92 pinctrl-names = "default"; 93 93 pinctrl-0 = <&pinctrl_usb1>; 94 94 clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>;