summaryrefslogtreecommitdiff
path: root/src/device
diff options
context:
space:
mode:
authorhathach <[email protected]>2024-03-25 17:46:28 +0700
committerhathach <[email protected]>2024-03-25 17:46:28 +0700
commit98b8e960aa20c7d29d4dfe9c7712a8a865b87827 (patch)
treeec7ae05c2ff135249c7332f278eb47459ed6dca9 /src/device
parent94c27fcdf77cdc4599df232b7785dfc5d3cc7407 (diff)
parentc028cfa7cf2fa281e6c88a816cf70fd80eb68338 (diff)
Merge branch 'master' into add-tuh-deinit
Diffstat (limited to 'src/device')
-rw-r--r--src/device/usbd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/usbd.c b/src/device/usbd.c
index ab572e095..96d0b698b 100644
--- a/src/device/usbd.c
+++ b/src/device/usbd.c
@@ -319,7 +319,7 @@ void usbd_driver_print_control_complete_name(usbd_control_xfer_cb_t callback) {
for (uint8_t i = 0; i < TOTAL_DRIVER_COUNT; i++) {
usbd_class_driver_t const* driver = get_driver(i);
if (driver && driver->control_xfer_cb == callback) {
- TU_LOG_USBD(" %s control complete\r\n", driver->name);
+ TU_LOG_USBD("%s control complete\r\n", driver->name);
return;
}
}