aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-12-27 19:24:16 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-12-27 19:24:16 +0000
commite6ec2c8cd0a86f38dd235f217118d2501b0bc050 (patch)
treecc16e403c92cfeefdecb2b4eeec07f1c72d2784e /os/ports
parentbbc58e4f6055c24d8633a90fa2026a7db1d3184a (diff)
downloadChibiOS-e6ec2c8cd0a86f38dd235f217118d2501b0bc050.tar.gz
ChibiOS-e6ec2c8cd0a86f38dd235f217118d2501b0bc050.tar.bz2
ChibiOS-e6ec2c8cd0a86f38dd235f217118d2501b0bc050.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3665 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports')
-rw-r--r--os/ports/GCC/ARMCMx/chcore_v6m.c2
-rw-r--r--os/ports/IAR/ARMCMx/chcore_v6m.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/os/ports/GCC/ARMCMx/chcore_v6m.c b/os/ports/GCC/ARMCMx/chcore_v6m.c
index ca268ad96..f154b9446 100644
--- a/os/ports/GCC/ARMCMx/chcore_v6m.c
+++ b/os/ports/GCC/ARMCMx/chcore_v6m.c
@@ -173,7 +173,7 @@ void _port_irq_epilogue(regarm_t lr) {
ctxp->pc = _port_switch_from_isr;
ctxp->xpsr = (regarm_t)0x01000000;
/* Note, returning without unlocking is intentional, this is done in
- order to keep the rest of the context switching atomic.*/
+ order to keep the rest of the context switching atomic.*/
}
}
diff --git a/os/ports/IAR/ARMCMx/chcore_v6m.c b/os/ports/IAR/ARMCMx/chcore_v6m.c
index bee25350a..9df844baa 100644
--- a/os/ports/IAR/ARMCMx/chcore_v6m.c
+++ b/os/ports/IAR/ARMCMx/chcore_v6m.c
@@ -106,7 +106,7 @@ void _port_irq_epilogue(regarm_t lr) {
ctxp->pc = (regarm_t)_port_switch_from_isr;
ctxp->xpsr = (regarm_t)0x01000000;
/* Note, returning without unlocking is intentional, this is done in
- order to keep the rest of the context switching atomic.*/
+ order to keep the rest of the context switching atomic.*/
}
}