diff options
| author | Ha Thach <[email protected]> | 2024-03-22 21:23:14 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-03-22 21:23:14 +0700 |
| commit | 67cd8349d614f7a981117ad85d6707e106cd6145 (patch) | |
| tree | 1eff1cc83d7547d201356bf04016bcd71e076ad2 /src/device | |
| parent | 60764de56461edbf1e8bafe4e73fdc97ec3d2e6e (diff) | |
| parent | ff12544c9ac1f61c5d25d58608f16f5991e9f776 (diff) | |
Merge pull request #2526 from hathach/fix-uvc-hardfault
Fix uvc hardfault
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; } } |
