From 0ee4e06235207136c66135d57b639e4cfff0d937 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 2 Dec 2014 09:35:07 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7554 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/include/hal_queues.h | 9 +++------ os/hal/include/i2s.h | 4 ---- 2 files changed, 3 insertions(+), 10 deletions(-) (limited to 'os/hal/include') diff --git a/os/hal/include/hal_queues.h b/os/hal/include/hal_queues.h index f8fa0756a..0bf2628b6 100644 --- a/os/hal/include/hal_queues.h +++ b/os/hal/include/hal_queues.h @@ -58,8 +58,7 @@ typedef void (*qnotify_t)(io_queue_t *qp); * queue. The queue is asymmetrical because one end is meant to be * accessed from a thread context, and thus can be blocking, the other * end is accessible from interrupt handlers or from within a kernel - * lock zone (see I-Locked and S-Locked states in - * @ref system_states) and is non-blocking. + * lock zone and is non-blocking. */ struct io_queue { threads_queue_t q_waiting; /**< @brief Waiting thread. */ @@ -117,8 +116,7 @@ struct io_queue { * @brief Type of an input queue structure. * @details This structure represents a generic asymmetrical input queue. * Writing to the queue is non-blocking and can be performed from - * interrupt handlers or from within a kernel lock zone (see - * I-Locked and S-Locked states in @ref system_states). + * interrupt handlers or from within a kernel lock zone. * Reading the queue can be a blocking operation and is supposed to * be performed by a system thread. */ @@ -232,8 +230,7 @@ typedef io_queue_t input_queue_t; * @brief Type of an output queue structure. * @details This structure represents a generic asymmetrical output queue. * Reading from the queue is non-blocking and can be performed from - * interrupt handlers or from within a kernel lock zone (see - * I-Locked and S-Locked states in @ref system_states). + * interrupt handlers or from within a kernel lock zone. * Writing the queue can be a blocking operation and is supposed to * be performed by a system thread. */ diff --git a/os/hal/include/i2s.h b/os/hal/include/i2s.h index 310ae3510..655f1c3c4 100644 --- a/os/hal/include/i2s.h +++ b/os/hal/include/i2s.h @@ -80,10 +80,6 @@ typedef enum { * @brief Starts a I2S data exchange. * * @param[in] i2sp pointer to the @p I2SDriver object - * @param[in] n size of the transmit buffer, must be even and greater - * than zero - * @param[out] txbuf the pointer to the transmit buffer - * @param[out] rxbuf the pointer to the receive buffer * * @iclass */ -- cgit v1.2.3