]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
usb: dwc3: qcom: fix missing optional irq warnings
authorJohan Hovold <johan+linaro@kernel.org>
Wed, 13 Jul 2022 13:13:36 +0000 (15:13 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 21 Aug 2022 13:15:59 +0000 (15:15 +0200)
[ Upstream commit 69bb3520db7cecbccc9e497fc568fa5465c9d43f ]

Not all platforms have all of the four currently supported wakeup
interrupts so use the optional irq helpers when looking up interrupts to
avoid printing error messages when an optional interrupt is not found:

dwc3-qcom a6f8800.usb: error -ENXIO: IRQ hs_phy_irq not found

Fixes: a4333c3a6ba9 ("usb: dwc3: Add Qualcomm DWC3 glue driver")
Reviewed-by: Andrew Halaney <ahalaney@redhat.com>
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Link: https://lore.kernel.org/r/20220713131340.29401-4-johan+linaro@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/usb/dwc3/dwc3-qcom.c

index 504f8af4d0f80ba319276d9c8347a6c0d5b2f38c..915fa4197d77037169ec03e66f10f0ce594d8d72 100644 (file)
@@ -443,9 +443,9 @@ static int dwc3_qcom_get_irq(struct platform_device *pdev,
        int ret;
 
        if (np)
-               ret = platform_get_irq_byname(pdev_irq, name);
+               ret = platform_get_irq_byname_optional(pdev_irq, name);
        else
-               ret = platform_get_irq(pdev_irq, num);
+               ret = platform_get_irq_optional(pdev_irq, num);
 
        return ret;
 }