USB: Fix connected device switch to Inactive state.
authorSarah Sharp <sarah.a.sharp@linux.intel.com>
Thu, 1 Nov 2012 18:20:44 +0000 (11:20 -0700)
committerSarah Sharp <sarah.a.sharp@linux.intel.com>
Thu, 3 Jan 2013 22:10:35 +0000 (14:10 -0800)
commitd3b9d7a9051d7024a93c76a84b2f84b3b66ad6d5
tree7f99cb052f5e5afa4f1d3d788bba23b5c9f6029d
parenta24a6078754f28528bc91e7e7b3e6ae86bd936d8
USB: Fix connected device switch to Inactive state.

A USB 3.0 device can transition to the Inactive state if a U1 or U2 exit
transition fails.  The current code in hub_events simply issues a warm
reset, but does not call any pre-reset or post-reset driver methods (or
unbind/rebind drivers without them).  Therefore the drivers won't know
their device has just been reset.

hub_events should instead call usb_reset_device.  This means
hub_port_reset now needs to figure out whether it should issue a warm
reset or a hot reset.

Remove the FIXME note about needing disconnect() for a NOTATTACHED
device.  This patch fixes that.

Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
drivers/usb/core/hub.c