From 45244037de217edfbe8afc21a50f4f0b563f7f9d Mon Sep 17 00:00:00 2001 From: lhylhylhy6 <75922453+lhylhylhy6@users.noreply.github.com> Date: Tue, 6 Sep 2022 12:29:05 +0800 Subject: [PATCH] =?UTF-8?q?[modify]=E4=BF=AE=E6=94=B9waitqueue.c=E6=B3=A8?= =?UTF-8?q?=E9=87=8A=E4=B8=AD=E7=9A=84=E9=94=99=E8=AF=AF=20(#6376)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/drivers/ipc/waitqueue.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/drivers/ipc/waitqueue.c b/components/drivers/ipc/waitqueue.c index 7bf40d3add..97b5075638 100644 --- a/components/drivers/ipc/waitqueue.c +++ b/components/drivers/ipc/waitqueue.c @@ -35,8 +35,6 @@ void rt_wqueue_add(rt_wqueue_t *queue, struct rt_wqueue_node *node) /** * @brief This function will remove a node from the wait queue. * - * @param queue is a pointer to the wait queue. - * * @param node is a pointer to the node to be removed. */ void rt_wqueue_remove(struct rt_wqueue_node *node) @@ -52,7 +50,7 @@ void rt_wqueue_remove(struct rt_wqueue_node *node) * @brief This function is the default wakeup function, but it doesn't do anything in actual. * It always return 0, user should define their own wakeup function. * - * @param queue is a pointer to the wait queue. + * @param wait is a pointer to the wait queue. * * @param key is the wakeup condition. * -- GitLab