diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-05-22 11:47:00 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-05-29 07:03:56 +0200 |
commit | 7ed4657396add28382081a15557c78cd480c1cf1 (patch) | |
tree | 7cb9c67bb31cb9182e0c78d963644b8cbae041a1 /hw | |
parent | da35f7f1eeff9f249a9597400fc514c83fd3a0f8 (diff) |
usb: call reset handler before updating state
That way the device reset handler can see what
the before-reset state of the device is.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20190522094702.17619-2-kraxel@redhat.com
Diffstat (limited to 'hw')
-rw-r--r-- | hw/usb/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/core.c b/hw/usb/core.c index 8fbd9c7d57..3ab48a1607 100644 --- a/hw/usb/core.c +++ b/hw/usb/core.c @@ -87,10 +87,10 @@ void usb_device_reset(USBDevice *dev) if (dev == NULL || !dev->attached) { return; } + usb_device_handle_reset(dev); dev->remote_wakeup = 0; dev->addr = 0; dev->state = USB_STATE_DEFAULT; - usb_device_handle_reset(dev); } void usb_wakeup(USBEndpoint *ep, unsigned int stream) |