From 78dfa1fd9a49db00153e88a6b06bc3d88afab35e Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Tue, 23 Sep 2025 13:55:00 +0800 Subject: [PATCH] Trim trailing spaces of components/libc/posix/io/poll/poll.c Signed-off-by: Yonggang Luo --- components/libc/posix/io/poll/poll.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/libc/posix/io/poll/poll.c b/components/libc/posix/io/poll/poll.c index 7ab4a9bec1..8be654ed3b 100644 --- a/components/libc/posix/io/poll/poll.c +++ b/components/libc/posix/io/poll/poll.c @@ -23,7 +23,7 @@ #include "poll.h" -enum rt_poll_status +enum rt_poll_status { RT_POLL_STAT_INIT, /**< Poll operation initialization status. */ RT_POLL_STAT_TRIG, /**< Poll operation triggered status. */ @@ -31,7 +31,7 @@ enum rt_poll_status }; -struct rt_poll_table +struct rt_poll_table { rt_pollreq_t req; /**< Poll request. */ enum rt_poll_status status; /**< Status of the poll operation. */ @@ -40,7 +40,7 @@ struct rt_poll_table }; -struct rt_poll_node +struct rt_poll_node { struct rt_wqueue_node wqn; /**< Wait queue node for the poll node. */ struct rt_poll_table *pt; /**< Pointer to the parent poll table. */