diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-27 16:10:30 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-27 16:10:30 +0000 |
commit | aebe7d83a55d5db9911b6dccd3a76259982bdcc6 (patch) | |
tree | 314a51eea1e1d363ea65d573c174002c842b2279 /os/common/oslib/include/chfifo.h | |
parent | 71ccd7eb14c4cb3cc4362feda7adc19ec2fd0ff8 (diff) | |
download | ChibiOS-aebe7d83a55d5db9911b6dccd3a76259982bdcc6.tar.gz ChibiOS-aebe7d83a55d5db9911b6dccd3a76259982bdcc6.tar.bz2 ChibiOS-aebe7d83a55d5db9911b6dccd3a76259982bdcc6.zip |
Various fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11080 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common/oslib/include/chfifo.h')
-rw-r--r-- | os/common/oslib/include/chfifo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/common/oslib/include/chfifo.h b/os/common/oslib/include/chfifo.h index 78ba16132..31260bc37 100644 --- a/os/common/oslib/include/chfifo.h +++ b/os/common/oslib/include/chfifo.h @@ -223,7 +223,7 @@ static inline void chFifoReturnObject(objects_fifo_t *ofp, * @note By design the object can be always immediately posted.
*
* @param[in] ofp pointer to a @p objects_fifo_t structure
- * @param[in] objp pointer to the object to be released
+ * @param[in] objp pointer to the object to be posted
*
* @iclass
*/
@@ -240,7 +240,7 @@ static inline void chFifoSendObjectI(objects_fifo_t *ofp, * @note By design the object can be always immediately posted.
*
* @param[in] ofp pointer to a @p objects_fifo_t structure
- * @param[in] objp pointer to the object to be released
+ * @param[in] objp pointer to the object to be posted
*
* @sclass
*/
|