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

Commit a9649356 authored by Johan Hovold's avatar Johan Hovold Committed by Greg Kroah-Hartman
Browse files

greybus: usb: disable protocol driver



The USB bridged-PHY protocol driver currently depends on changes to USB
core that are not yet upstream.

Disable for now.

Signed-off-by: default avatarJohan Hovold <johan@hovoldconsulting.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent a422ecd2
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -190,6 +190,18 @@ static int gb_usb_connection_init(struct gb_connection *connection)

	hcd->has_tt = 1;

	/*
	 * FIXME: The USB bridged-PHY protocol driver depends on changes to
	 *        USB core which are not yet upstream.
	 *
	 *        Disable for now.
	 */
	if (1) {
		dev_warn(&connection->dev, "USB protocol disabled\n");
		retval = -EPROTONOSUPPORT;
		goto err_put_hcd;
	}

	retval = usb_add_hcd(hcd, 0, 0);
	if (retval)
		goto err_put_hcd;