diff options
| author | aozima <[email protected]> | 2022-03-27 14:38:47 +0800 |
|---|---|---|
| committer | sakumisu <[email protected]> | 2022-03-27 14:58:25 +0800 |
| commit | 3cce9e7d784a7d9fea6db5a97ff3d98b70a2252d (patch) | |
| tree | a559069c0ca92c348202cfc9a7bb54c036a7727f /osal | |
| parent | 8d5bbd34aae075b997c0052910d42f0130982de4 (diff) | |
clean compiler warning.
Diffstat (limited to 'osal')
| -rw-r--r-- | osal/usb_osal_freertos.c | 2 | ||||
| -rw-r--r-- | osal/usb_osal_rtthread.c | 2 | ||||
| -rw-r--r-- | osal/usb_workq.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/osal/usb_osal_freertos.c b/osal/usb_osal_freertos.c index 98b9ac1e..4b890ae8 100644 --- a/osal/usb_osal_freertos.c +++ b/osal/usb_osal_freertos.c @@ -145,4 +145,4 @@ void usb_osal_leave_critical_section(uint32_t flag) void usb_osal_msleep(uint32_t delay) { vTaskDelay(pdMS_TO_TICKS(delay)); -}
\ No newline at end of file +} diff --git a/osal/usb_osal_rtthread.c b/osal/usb_osal_rtthread.c index bb3adefa..56e8d99a 100644 --- a/osal/usb_osal_rtthread.c +++ b/osal/usb_osal_rtthread.c @@ -114,4 +114,4 @@ void usb_osal_leave_critical_section(uint32_t flag) void usb_osal_msleep(uint32_t delay) { rt_thread_mdelay(rt_tick_from_millisecond(delay)); -}
\ No newline at end of file +} diff --git a/osal/usb_workq.h b/osal/usb_workq.h index 6d54b167..0c3707dd 100644 --- a/osal/usb_workq.h +++ b/osal/usb_workq.h @@ -46,4 +46,4 @@ extern struct usb_workqueue g_lpworkq; void usb_workqueue_submit(struct usb_workqueue *queue, struct usb_work *work, usb_worker_t worker, void *arg, uint32_t ticks); int usbh_workq_initialize(); -#endif
\ No newline at end of file +#endif |
