From 24d089d80af38e6f97789961c18ab4a2999a16d9 Mon Sep 17 00:00:00 2001 From: Bernard Xiong Date: Tue, 1 Mar 2016 10:57:25 +0800 Subject: [PATCH] [DeviceDrivers] Remove the tail space --- components/drivers/include/rtdevice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/drivers/include/rtdevice.h b/components/drivers/include/rtdevice.h index 475adebf80..83a6e8497a 100644 --- a/components/drivers/include/rtdevice.h +++ b/components/drivers/include/rtdevice.h @@ -303,7 +303,7 @@ rt_err_t rt_workqueue_destroy(struct rt_workqueue* queue); rt_err_t rt_workqueue_dowork(struct rt_workqueue* queue, struct rt_work* work); rt_err_t rt_workqueue_cancel_work(struct rt_workqueue* queue, struct rt_work* work); -rt_inline void rt_work_init(struct rt_work* work, void (*work_func)(struct rt_work* work, void* work_data), +rt_inline void rt_work_init(struct rt_work* work, void (*work_func)(struct rt_work* work, void* work_data), void* work_data) { rt_list_init(&(work->list));