Skip to content

Commit 60a76f7

Browse files
quic-varadaandersson
authored andcommitted
arm64: dts: qcom: ipq5332: Fix interrupt trigger type for usb
Trigger type is incorrectly specified as IRQ_TYPE_EDGE_BOTH instead of IRQ_TYPE_LEVEL_HIGH. This trigger type is not supported for SPIs and results in probe failure with -EINVAL. Reviewed-by: Konrad Dybcio <[email protected]> Fixes: 927173b ("arm64: dts: qcom: Add missing interrupts for qcs404/ipq5332") Signed-off-by: Varadarajan Narayanan <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Bjorn Andersson <[email protected]>
1 parent 8bc7cb7 commit 60a76f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm64/boot/dts/qcom/ipq5332.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,8 @@
320320
reg = <0x08af8800 0x400>;
321321

322322
interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>,
323-
<GIC_SPI 53 IRQ_TYPE_EDGE_BOTH>,
324-
<GIC_SPI 52 IRQ_TYPE_EDGE_BOTH>;
323+
<GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>,
324+
<GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
325325
interrupt-names = "pwr_event",
326326
"dp_hs_phy_irq",
327327
"dm_hs_phy_irq";

0 commit comments

Comments
 (0)