Loading drivers/usb/dwc3/core.c +2 −2 Original line number Diff line number Diff line Loading @@ -810,8 +810,8 @@ static int dwc3_probe(struct platform_device *pdev) dwc->xhci_resources[1].name = res->name; irq = platform_get_irq(to_platform_device(dwc->dev), 0); ret = devm_request_threaded_irq(dev, irq, NULL, dwc3_interrupt, IRQF_SHARED | IRQF_ONESHOT, "dwc3", dwc); ret = devm_request_irq(dev, irq, dwc3_interrupt, IRQF_SHARED, "dwc3", dwc); if (ret) { dev_err(dwc->dev, "failed to request irq #%d --> %d\n", irq, ret); Loading drivers/usb/host/xhci-plat.c +1 −1 Original line number Diff line number Diff line Loading @@ -229,7 +229,7 @@ static int xhci_plat_probe(struct platform_device *pdev) if (HCC_MAX_PSA(xhci->hcc_params) >= 4) xhci->shared_hcd->can_do_streams = 1; ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED | IRQF_ONESHOT); ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED); if (ret) goto put_usb3_hcd; Loading Loading
drivers/usb/dwc3/core.c +2 −2 Original line number Diff line number Diff line Loading @@ -810,8 +810,8 @@ static int dwc3_probe(struct platform_device *pdev) dwc->xhci_resources[1].name = res->name; irq = platform_get_irq(to_platform_device(dwc->dev), 0); ret = devm_request_threaded_irq(dev, irq, NULL, dwc3_interrupt, IRQF_SHARED | IRQF_ONESHOT, "dwc3", dwc); ret = devm_request_irq(dev, irq, dwc3_interrupt, IRQF_SHARED, "dwc3", dwc); if (ret) { dev_err(dwc->dev, "failed to request irq #%d --> %d\n", irq, ret); Loading
drivers/usb/host/xhci-plat.c +1 −1 Original line number Diff line number Diff line Loading @@ -229,7 +229,7 @@ static int xhci_plat_probe(struct platform_device *pdev) if (HCC_MAX_PSA(xhci->hcc_params) >= 4) xhci->shared_hcd->can_do_streams = 1; ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED | IRQF_ONESHOT); ret = usb_add_hcd(xhci->shared_hcd, irq, IRQF_SHARED); if (ret) goto put_usb3_hcd; Loading