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: Johan Hovold <johan@hovoldconsulting.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Johan Hovold 2015-07-30 20:30:41 +02:00 committed by Greg Kroah-Hartman
parent a422ecd28e
commit a96493560c

View File

@ -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;