aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-12-02 09:35:07 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-12-02 09:35:07 +0000
commit0ee4e06235207136c66135d57b639e4cfff0d937 (patch)
tree0f3f21dc50a05f3452464901c97a9da78876bc0f /os/hal/include
parentbad3f755e18bb9964adacbec3402253b5a483336 (diff)
downloadChibiOS-0ee4e06235207136c66135d57b639e4cfff0d937.tar.gz
ChibiOS-0ee4e06235207136c66135d57b639e4cfff0d937.tar.bz2
ChibiOS-0ee4e06235207136c66135d57b639e4cfff0d937.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7554 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include')
-rw-r--r--os/hal/include/hal_queues.h9
-rw-r--r--os/hal/include/i2s.h4
2 files changed, 3 insertions, 10 deletions
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 <b>I-Locked</b> and <b>S-Locked</b> 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
- * <b>I-Locked</b> and <b>S-Locked</b> 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
- * <b>I-Locked</b> and <b>S-Locked</b> 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
*/