aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-09-05 14:35:24 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-09-05 14:35:24 +0000
commitf236e1de8be0171f0ae4a7e57505a66609548630 (patch)
tree25deec06dcbcab716fb7f05954a43e22a2a60cac /os
parent1a0fead19b521501ec5b7ff7532d6a7b435fdaa6 (diff)
downloadChibiOS-f236e1de8be0171f0ae4a7e57505a66609548630.tar.gz
ChibiOS-f236e1de8be0171f0ae4a7e57505a66609548630.tar.bz2
ChibiOS-f236e1de8be0171f0ae4a7e57505a66609548630.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2165 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-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