aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--os/hal/platforms/STM32/stm32_dma.h2
-rw-r--r--os/ports/GCC/ARM7/port.dox2
2 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/platforms/STM32/stm32_dma.h b/os/hal/platforms/STM32/stm32_dma.h
index 5088417b4..226ec9b7f 100644
--- a/os/hal/platforms/STM32/stm32_dma.h
+++ b/os/hal/platforms/STM32/stm32_dma.h
@@ -129,7 +129,7 @@ typedef struct {
* @brief Associates a peripheral data register to a DMA channel.
*
* @param[in] dmachp dmachp to a stm32_dma_channel_t structure
- * @param[in] cmar value to be written in the CPAR register
+ * @param[in] cpar value to be written in the CPAR register
*/
#define dmaChannelSetPeripheral(dmachp, cpar) { \
(dmachp)->CPAR = (uint32_t)(cpar); \
diff --git a/os/ports/GCC/ARM7/port.dox b/os/ports/GCC/ARM7/port.dox
index afe419db7..2c612d77a 100644
--- a/os/ports/GCC/ARM7/port.dox
+++ b/os/ports/GCC/ARM7/port.dox
@@ -129,7 +129,7 @@
* @endcode
* Note that several commercial compilers support a GNU-like functions
* attribute mechanism.<br>
- * Alternative ways are to use an appropriate #pragma directive or disable
+ * Alternative ways are to use an appropriate pragma directive or disable
* inlining optimizations in the modules containing the interrupt handlers.
*
* @ingroup gcc