diff options
Diffstat (limited to 'src/host')
| -rw-r--r-- | src/host/usbh.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/host/usbh.c b/src/host/usbh.c index eca72a1c5..b8439addc 100644 --- a/src/host/usbh.c +++ b/src/host/usbh.c @@ -541,12 +541,11 @@ void process_device_unplugged(uint8_t rhport, uint8_t hub_addr, uint8_t hub_port usbh_class_drivers[drv_id].close(dev_addr); } - memset(dev->itf2drv, DRVID_INVALID, sizeof(dev->itf2drv)); // invalid mapping - memset(dev->ep2drv , DRVID_INVALID, sizeof(dev->ep2drv )); // invalid mapping - hcd_device_close(rhport, dev_addr); // release all endpoints associated with the device + memset(dev->itf2drv, DRVID_INVALID, sizeof(dev->itf2drv)); // invalid mapping + memset(dev->ep2drv , DRVID_INVALID, sizeof(dev->ep2drv )); // invalid mapping tu_memclr(dev->ep_status, sizeof(dev->ep_status)); dev->state = TUSB_DEVICE_STATE_UNPLUG; |
