From ddcc89f8d136acd94bba873c2e851a5d2f50e67c Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 20 Dec 2015 09:45:43 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8619 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/rt/include/chqueues.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'os/rt/include') diff --git a/os/rt/include/chqueues.h b/os/rt/include/chqueues.h index e48429d14..6b57a7e3c 100644 --- a/os/rt/include/chqueues.h +++ b/os/rt/include/chqueues.h @@ -195,7 +195,7 @@ typedef io_queue_t output_queue_t; /** * @brief Returns the queue's buffer size. * - * @param[in] qp pointer to a @p io_queue_t structure. + * @param[in] qp pointer to a @p io_queue_t structure * @return The buffer size. * * @xclass @@ -210,7 +210,7 @@ typedef io_queue_t output_queue_t; * @details Returns the used space if used on an input queue or the empty * space if used on an output queue. * - * @param[in] qp pointer to a @p io_queue_t structure. + * @param[in] qp pointer to a @p io_queue_t structure * @return The buffer space. * * @iclass @@ -220,7 +220,7 @@ typedef io_queue_t output_queue_t; /** * @brief Returns the queue application-defined link. * - * @param[in] qp pointer to a @p io_queue_t structure. + * @param[in] qp pointer to a @p io_queue_t structure * @return The application-defined link. * * @xclass @@ -293,7 +293,7 @@ static inline size_t chIQGetEmptyI(input_queue_t *iqp) { /** * @brief Evaluates to @p true if the specified input queue is empty. * - * @param[in] iqp pointer to an @p input_queue_t structure. + * @param[in] iqp pointer to an @p input_queue_t structure * @return The queue status. * @retval false if the queue is not empty. * @retval true if the queue is empty. @@ -310,7 +310,7 @@ static inline bool chIQIsEmptyI(input_queue_t *iqp) { /** * @brief Evaluates to @p true if the specified input queue is full. * - * @param[in] iqp pointer to an @p input_queue_t structure. + * @param[in] iqp pointer to an @p input_queue_t structure * @return The queue status. * @retval false if the queue is not full. * @retval true if the queue is full. @@ -376,7 +376,7 @@ static inline size_t chOQGetEmptyI(output_queue_t *oqp) { /** * @brief Evaluates to @p true if the specified output queue is empty. * - * @param[in] oqp pointer to an @p output_queue_t structure. + * @param[in] oqp pointer to an @p output_queue_t structure * @return The queue status. * @retval false if the queue is not empty. * @retval true if the queue is empty. @@ -393,7 +393,7 @@ static inline bool chOQIsEmptyI(output_queue_t *oqp) { /** * @brief Evaluates to @p true if the specified output queue is full. * - * @param[in] oqp pointer to an @p output_queue_t structure. + * @param[in] oqp pointer to an @p output_queue_t structure * @return The queue status. * @retval false if the queue is not full. * @retval true if the queue is full. -- cgit v1.2.3