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

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

Merge "usb: misc: ks_bridge: Enable enumeration on second xHCI port"

parents 1f37f3db e325988b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -47,7 +47,8 @@ static enum bus_id str_to_busid(const char *name)
		return BUS_HSIC;
	if (!strncasecmp("msm_ehci_host.0", name, BUSNAME_LEN))
		return BUS_USB;
	if (!strncasecmp("xhci-hcd.0.auto", name, BUSNAME_LEN))
	if (!strncasecmp("xhci-hcd.0.auto", name, BUSNAME_LEN) ||
	    !strncasecmp("xhci-hcd.1.auto", name, BUSNAME_LEN))
		return BUS_USB;

	return BUS_UNDEF;