aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/hal_queues.c
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-12-05 09:46:12 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-12-05 09:46:12 +0000
commit62e068f5f48a08c57191f37313abc0011a5ee63c (patch)
tree3a504a122ef018535dd055178914c5212321a781 /os/hal/src/hal_queues.c
parent19ff25ecc7972a39bebaec79180254ab8b83a12d (diff)
downloadChibiOS-62e068f5f48a08c57191f37313abc0011a5ee63c.tar.gz
ChibiOS-62e068f5f48a08c57191f37313abc0011a5ee63c.tar.bz2
ChibiOS-62e068f5f48a08c57191f37313abc0011a5ee63c.zip
Documentation fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11118 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src/hal_queues.c')
-rw-r--r--os/hal/src/hal_queues.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/os/hal/src/hal_queues.c b/os/hal/src/hal_queues.c
index a12382cab..0f9ab99a2 100644
--- a/os/hal/src/hal_queues.c
+++ b/os/hal/src/hal_queues.c
@@ -606,11 +606,6 @@ msg_t oqGetI(output_queue_t *oqp) {
* @param[in] bp pointer to the data buffer
* @param[in] n the maximum amount of data to be transferred, the
* value 0 is reserved
- * @param[in] timeout the number of ticks before the operation timeouts,
- * the following special values are allowed:
- * - @a TIME_IMMEDIATE immediate timeout.
- * - @a TIME_INFINITE no timeout.
- * .
* @return The number of bytes effectively transferred.
*
* @iclass