diff options
Diffstat (limited to 'drivers/usb/core/hub.c')
-rw-r--r-- | drivers/usb/core/hub.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 20ecb4cec8de..bb416cdee1a7 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c | |||
@@ -2008,7 +2008,9 @@ static int hub_port_reset(struct usb_hub *hub, int port1, | |||
2008 | struct usb_device *udev, unsigned int delay) | 2008 | struct usb_device *udev, unsigned int delay) |
2009 | { | 2009 | { |
2010 | int i, status; | 2010 | int i, status; |
2011 | struct usb_hcd *hcd; | ||
2011 | 2012 | ||
2013 | hcd = bus_to_hcd(udev->bus); | ||
2012 | /* Block EHCI CF initialization during the port reset. | 2014 | /* Block EHCI CF initialization during the port reset. |
2013 | * Some companion controllers don't like it when they mix. | 2015 | * Some companion controllers don't like it when they mix. |
2014 | */ | 2016 | */ |
@@ -2036,6 +2038,14 @@ static int hub_port_reset(struct usb_hub *hub, int port1, | |||
2036 | /* TRSTRCY = 10 ms; plus some extra */ | 2038 | /* TRSTRCY = 10 ms; plus some extra */ |
2037 | msleep(10 + 40); | 2039 | msleep(10 + 40); |
2038 | update_address(udev, 0); | 2040 | update_address(udev, 0); |
2041 | if (hcd->driver->reset_device) { | ||
2042 | status = hcd->driver->reset_device(hcd, udev); | ||
2043 | if (status < 0) { | ||
2044 | dev_err(&udev->dev, "Cannot reset " | ||
2045 | "HCD device state\n"); | ||
2046 | break; | ||
2047 | } | ||
2048 | } | ||
2039 | /* FALL THROUGH */ | 2049 | /* FALL THROUGH */ |
2040 | case -ENOTCONN: | 2050 | case -ENOTCONN: |
2041 | case -ENODEV: | 2051 | case -ENODEV: |
@@ -2645,14 +2655,7 @@ hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1, | |||
2645 | 2655 | ||
2646 | mutex_lock(&usb_address0_mutex); | 2656 | mutex_lock(&usb_address0_mutex); |
2647 | 2657 | ||
2648 | if ((hcd->driver->flags & HCD_USB3) && udev->config) { | 2658 | if (!udev->config && oldspeed == USB_SPEED_SUPER) { |
2649 | /* FIXME this will need special handling by the xHCI driver. */ | ||
2650 | dev_dbg(&udev->dev, | ||
2651 | "xHCI reset of configured device " | ||
2652 | "not supported yet.\n"); | ||
2653 | retval = -EINVAL; | ||
2654 | goto fail; | ||
2655 | } else if (!udev->config && oldspeed == USB_SPEED_SUPER) { | ||
2656 | /* Don't reset USB 3.0 devices during an initial setup */ | 2659 | /* Don't reset USB 3.0 devices during an initial setup */ |
2657 | usb_set_device_state(udev, USB_STATE_DEFAULT); | 2660 | usb_set_device_state(udev, USB_STATE_DEFAULT); |
2658 | } else { | 2661 | } else { |