Commit 248a8ffd authored by Alain Volmat's avatar Alain Volmat Committed by Patrice Chotard

dts: arm: stih418: Fix complain about IRQ_TYPE_NONE usage

Since commit 83a86fbb ("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: default avatarAlain Volmat <avolmat@me.com>
Reviewed-by: default avatarPatrice Chotard <patrice.chotard@st.com>
Signed-off-by: default avatarPatrice Chotard <patrice.chotard@st.com>
parent 8f3d9f35
...@@ -50,7 +50,7 @@ usb2_picophy2: phy3@0 { ...@@ -50,7 +50,7 @@ usb2_picophy2: phy3@0 {
ohci0: usb@9a03c00 { ohci0: usb@9a03c00 {
compatible = "st,st-ohci-300x"; compatible = "st,st-ohci-300x";
reg = <0x9a03c00 0x100>; reg = <0x9a03c00 0x100>;
interrupts = <GIC_SPI 180 IRQ_TYPE_NONE>; interrupts = <GIC_SPI 180 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>; clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>;
resets = <&powerdown STIH407_USB2_PORT0_POWERDOWN>, resets = <&powerdown STIH407_USB2_PORT0_POWERDOWN>,
<&softreset STIH407_USB2_PORT0_SOFTRESET>; <&softreset STIH407_USB2_PORT0_SOFTRESET>;
...@@ -62,7 +62,7 @@ ohci0: usb@9a03c00 { ...@@ -62,7 +62,7 @@ ohci0: usb@9a03c00 {
ehci0: usb@9a03e00 { ehci0: usb@9a03e00 {
compatible = "st,st-ehci-300x"; compatible = "st,st-ehci-300x";
reg = <0x9a03e00 0x100>; reg = <0x9a03e00 0x100>;
interrupts = <GIC_SPI 151 IRQ_TYPE_NONE>; interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&pinctrl_usb0>; pinctrl-0 = <&pinctrl_usb0>;
clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>; clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>;
...@@ -76,7 +76,7 @@ ehci0: usb@9a03e00 { ...@@ -76,7 +76,7 @@ ehci0: usb@9a03e00 {
ohci1: usb@9a83c00 { ohci1: usb@9a83c00 {
compatible = "st,st-ohci-300x"; compatible = "st,st-ohci-300x";
reg = <0x9a83c00 0x100>; reg = <0x9a83c00 0x100>;
interrupts = <GIC_SPI 181 IRQ_TYPE_NONE>; interrupts = <GIC_SPI 181 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>; clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>;
resets = <&powerdown STIH407_USB2_PORT1_POWERDOWN>, resets = <&powerdown STIH407_USB2_PORT1_POWERDOWN>,
<&softreset STIH407_USB2_PORT1_SOFTRESET>; <&softreset STIH407_USB2_PORT1_SOFTRESET>;
...@@ -88,7 +88,7 @@ ohci1: usb@9a83c00 { ...@@ -88,7 +88,7 @@ ohci1: usb@9a83c00 {
ehci1: usb@9a83e00 { ehci1: usb@9a83e00 {
compatible = "st,st-ehci-300x"; compatible = "st,st-ehci-300x";
reg = <0x9a83e00 0x100>; reg = <0x9a83e00 0x100>;
interrupts = <GIC_SPI 153 IRQ_TYPE_NONE>; interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>;
pinctrl-names = "default"; pinctrl-names = "default";
pinctrl-0 = <&pinctrl_usb1>; pinctrl-0 = <&pinctrl_usb1>;
clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>; clocks = <&clk_s_c0_flexgen CLK_TX_ICN_DISP_0>;
......
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