summaryrefslogtreecommitdiff
path: root/src/host
diff options
context:
space:
mode:
authorhathach <[email protected]>2020-09-03 23:57:51 +0700
committerhathach <[email protected]>2020-09-03 23:57:51 +0700
commit35aee4a6af40c7c8befb5dfe81bbf7e26dc01ca8 (patch)
treed2e4c92d6f661fef249f5ef4a962fb1dd7fd7e94 /src/host
parent4ecedc70c8cbec366c7eb6dc90c99c7cce27407e (diff)
more hid host work
Diffstat (limited to 'src/host')
-rw-r--r--src/host/usbh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/usbh.c b/src/host/usbh.c
index 352450588..58550c93b 100644
--- a/src/host/usbh.c
+++ b/src/host/usbh.c
@@ -284,7 +284,7 @@ void hcd_event_xfer_complete(uint8_t dev_addr, uint8_t ep_addr, xfer_result_t ev
if (usbh_class_drivers[drv_id].isr)
{
- TU_LOG2("%s isr\r\n", usbh_class_drivers[drv_id].name);
+ //TU_LOG2("%s isr\r\n", usbh_class_drivers[drv_id].name);
usbh_class_drivers[drv_id].isr(dev_addr, ep_addr, event, xferred_bytes);
}
else