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

Commit e6c0bbd9 authored by Jack Pham's avatar Jack Pham
Browse files

Revert "usb: host: xhci-plat: Specify IRQF_ONESHOT in irqflag"



This reverts commit 577ec59a.

The dwc3 gadget which shares this IRQ no longer uses IRQF_ONESHOT.
Since all requests sharing the IRQ must have matching flags, also
remove IRQF_ONESHOT from xhci-plat.

Change-Id: Ic15373b5a541cdc19dafd23c4dd2a7a7ada347a4
Signed-off-by: default avatarJack Pham <jackp@codeaurora.org>
parent 12b56fe9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -170,7 +170,7 @@ static int xhci_plat_probe(struct platform_device *pdev)
	pm_runtime_enable(&pdev->dev);
	pm_runtime_get_sync(&pdev->dev);

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