Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 32e8a524 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "usb: dwc3: Change dwc3 irq to oneshot threaded irq"

parents 08adf1e8 197598e5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1021,8 +1021,8 @@ static int dwc3_probe(struct platform_device *pdev)

	/* will be enabled in dwc3_msm_resume() */
	irq_set_status_flags(irq, IRQ_NOAUTOEN);
	ret = devm_request_irq(dev, irq, dwc3_interrupt, IRQF_SHARED, "dwc3",
			dwc);
	ret = devm_request_threaded_irq(dev, irq, NULL, dwc3_interrupt,
				IRQF_SHARED | IRQF_ONESHOT, "dwc3", dwc);
	if (ret) {
		dev_err(dwc->dev, "failed to request irq #%d --> %d\n",
				irq, ret);
+2 −2
Original line number Diff line number Diff line
@@ -237,11 +237,11 @@ static int xhci_plat_probe(struct platform_device *pdev)
			goto put_usb3_hcd;
	}

	ret = usb_add_hcd(hcd, irq, IRQF_SHARED);
	ret = usb_add_hcd(hcd, irq, IRQF_SHARED | IRQF_ONESHOT);
	if (ret)
		goto disable_usb_phy;

	ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED);
	ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED | IRQF_ONESHOT);
	if (ret)
		goto dealloc_usb2_hcd;