diff options
author | edolomb <edolomb@110e8d01-0319-4d1e-a829-52ad28d1bb01> | 2018-06-22 13:40:37 +0000 |
---|---|---|
committer | edolomb <edolomb@110e8d01-0319-4d1e-a829-52ad28d1bb01> | 2018-06-22 13:40:37 +0000 |
commit | 1d1c704d1cb798b198b5ceac45937c4e5c5855f3 (patch) | |
tree | 0b79a32d36f9361ed808a0fefa4766a7ff28cb98 | |
parent | 6408b184b8fa66ce04f14f426ceaae1a1a97c30d (diff) | |
download | ChibiOS-1d1c704d1cb798b198b5ceac45937c4e5c5855f3.tar.gz ChibiOS-1d1c704d1cb798b198b5ceac45937c4e5c5855f3.tar.bz2 ChibiOS-1d1c704d1cb798b198b5ceac45937c4e5c5855f3.zip |
Minor change
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12119 110e8d01-0319-4d1e-a829-52ad28d1bb01
-rw-r--r-- | os/hal/ports/SAMA/LLD/DMAv1/sama_xdmac.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/os/hal/ports/SAMA/LLD/DMAv1/sama_xdmac.h b/os/hal/ports/SAMA/LLD/DMAv1/sama_xdmac.h index e562c24f3..7918d834d 100644 --- a/os/hal/ports/SAMA/LLD/DMAv1/sama_xdmac.h +++ b/os/hal/ports/SAMA/LLD/DMAv1/sama_xdmac.h @@ -146,11 +146,11 @@ typedef struct { /**
* @brief Returns the number of transfers to be performed.
* @note This function can be invoked in both ISR or thread context.
- * @pre The stream must have been allocated using @p dmaChannelAllocate().
- * @post After use the stream can be released using @p dmaChannelRelease().
+ * @pre The channel must have been allocated using @p dmaChannelAllocate().
+ * @post After use the channel can be released using @p dmaChannelRelease().
*
- * @param[in] dmachp pointer to a @p sama_dma_channel_t structure
- * @return The number of transfers to be performed.
+ * @param[in] dmachp pointer to a @p sama_dma_channel_t structure
+ * @return The number of transfers to be performed.
*
* @special
*/
|