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

Commit 989bad11 authored by Lu Baolu's avatar Lu Baolu Committed by Greg Kroah-Hartman
Browse files

usb: xhci: remove unnecessary return in xhci_pci_setup()



Remove the unnecessary return line in xhci_pci_setup().

Signed-off-by: default avatarLu Baolu <baolu.lu@linux.intel.com>
Signed-off-by: default avatarMathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent daa47f21
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -242,11 +242,7 @@ static int xhci_pci_setup(struct usb_hcd *hcd)
	xhci_dbg(xhci, "Got SBRN %u\n", (unsigned int) xhci->sbrn);

	/* Find any debug ports */
	retval = xhci_pci_reinit(xhci, pdev);
	if (!retval)
		return retval;

	return retval;
	return xhci_pci_reinit(xhci, pdev);
}

/*