From 7f2aaa210cea2c58d6fecf3d2ae57fca0b8a35cd Mon Sep 17 00:00:00 2001 From: chenyingchun0312 Date: Mon, 16 Aug 2021 13:10:26 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90doc=E3=80=91format=20drivers/src/compl?= =?UTF-8?q?etion.c?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/drivers/src/completion.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/drivers/src/completion.c b/components/drivers/src/completion.c index eb44007915..37fa514613 100644 --- a/components/drivers/src/completion.c +++ b/components/drivers/src/completion.c @@ -17,7 +17,7 @@ /** * @brief initialize the completion object - * + * * @param completion the point of completion object */ void rt_completion_init(struct rt_completion *completion) @@ -34,14 +34,14 @@ RTM_EXPORT(rt_completion_init); /** * @brief waitting for the completion done - * NOTE: We should not use this api when - * + * NOTE: We should not use this api when + * * @param completion the point of completion object * @param timeout is a timeout period (unit: an OS tick). If the completion is unavailable, the thread will wait for * the completion up to the amount of time specified by the argument. * NOTE: Generally, we use the macro RT_WAITING_FOREVER to set this parameter, which means that when the * completion is unavailable, the thread will be waitting forever. - * + * * @return Return the operation status. ONLY When the return value is RT_EOK, the operation is successful. * If the return value is any other values, it means that the completion wait failed. */ @@ -114,7 +114,7 @@ RTM_EXPORT(rt_completion_wait); /** * @brief indicate the completion has done - * + * * @param completion the point of completion object */ void rt_completion_done(struct rt_completion *completion)