diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-10-04 08:23:45 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-10-04 08:23:45 +0000 |
commit | 56cc87ba13a2794c7214fcab0f19f7153c621578 (patch) | |
tree | 16540c62abe6d5b543bd4e45e85fbef8cfd84763 /os/ports/GCC/ARMCMx | |
parent | 4542e4c7506b80777d940c63f68889821b50abb8 (diff) | |
download | ChibiOS-56cc87ba13a2794c7214fcab0f19f7153c621578.tar.gz ChibiOS-56cc87ba13a2794c7214fcab0f19f7153c621578.tar.bz2 ChibiOS-56cc87ba13a2794c7214fcab0f19f7153c621578.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4735 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC/ARMCMx')
-rw-r--r-- | os/ports/GCC/ARMCMx/chcore_v6m.c | 2 | ||||
-rw-r--r-- | os/ports/GCC/ARMCMx/chcore_v7m.c | 2 |
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 63576cb3d..6bdbbfeb5 100644 --- a/os/ports/GCC/ARMCMx/chcore_v6m.c +++ b/os/ports/GCC/ARMCMx/chcore_v6m.c @@ -118,7 +118,7 @@ void _port_irq_epilogue(regarm_t lr) { }
/* 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 switch atomic.*/
}
}
diff --git a/os/ports/GCC/ARMCMx/chcore_v7m.c b/os/ports/GCC/ARMCMx/chcore_v7m.c index d621074f1..08f3fbba1 100644 --- a/os/ports/GCC/ARMCMx/chcore_v7m.c +++ b/os/ports/GCC/ARMCMx/chcore_v7m.c @@ -184,7 +184,7 @@ void _port_irq_epilogue(void) { #endif
/* 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 switch atomic.*/
return;
}
port_unlock_from_isr();
|