diff options
| author | hathach <[email protected]> | 2024-03-15 20:39:45 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-03-20 17:55:31 +0700 |
| commit | 5630030a22cc850672c62bfe3a12c0054a7f84a2 (patch) | |
| tree | 58424d75d2d76ea0bf458726543a5cd351a66918 /src/device | |
| parent | 6352081ded448ef64d5d3285dafab684d14fd649 (diff) | |
improve uvc debug message
Diffstat (limited to 'src/device')
| -rw-r--r-- | src/device/usbd.c | 2 |
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; } } |
