From 3cce9e7d784a7d9fea6db5a97ff3d98b70a2252d Mon Sep 17 00:00:00 2001 From: aozima Date: Sun, 27 Mar 2022 14:38:47 +0800 Subject: clean compiler warning. --- osal/usb_osal_freertos.c | 2 +- osal/usb_osal_rtthread.c | 2 +- osal/usb_workq.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'osal') 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 -- cgit v1.3.1